<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Sharepoint &#8211; Miroslav Šraga</title>
	<atom:link href="https://www.sraga.cz/tag/sharepoint/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.sraga.cz</link>
	<description>Sdílím své zkušenosti s Microsoft 365 a Azure</description>
	<lastBuildDate>Thu, 25 Apr 2024 17:34:54 +0000</lastBuildDate>
	<language>cs</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9</generator>
	<item>
		<title>Sharepoint Online: Jak najít a smazat prázdné složky &#8211; tuned</title>
		<link>https://www.sraga.cz/sharepoint-online-jak-najit-a-smazat-prazdne-slozky-tuned/</link>
					<comments>https://www.sraga.cz/sharepoint-online-jak-najit-a-smazat-prazdne-slozky-tuned/#respond</comments>
		
		<dc:creator><![CDATA[Miroslav Šraga]]></dc:creator>
		<pubDate>Thu, 25 Apr 2024 17:24:01 +0000</pubDate>
				<category><![CDATA[PowerShell]]></category>
		<category><![CDATA[Sharepoint]]></category>
		<category><![CDATA[Export]]></category>
		<category><![CDATA[PnP PowerShell]]></category>
		<category><![CDATA[Report]]></category>
		<category><![CDATA[Sharepoint Online]]></category>
		<guid isPermaLink="false">https://www.sraga.cz/?p=597</guid>

					<description><![CDATA[V předchozím článku Sharepoint Online: Jak najít a smazat prázdné složky jsem popisoval, jak lze pomocí knihovny PnP PowerShell vytvořit report prázdných složek a tyto smazat z knihovny dokumentů. Skripty, které jsem použil tak jsou plně funkční, ale narazil jsem na jednu dost podstatnou věc: potřebuji smazat prázdné složky z knihovny dokumentů, ale nikoliv z ... <a title="Sharepoint Online: Jak najít a smazat prázdné složky &#8211; tuned" class="read-more" href="https://www.sraga.cz/sharepoint-online-jak-najit-a-smazat-prazdne-slozky-tuned/" aria-label="Číst více o Sharepoint Online: Jak najít a smazat prázdné složky &#8211; tuned">Číst dál</a>]]></description>
										<content:encoded><![CDATA[		<div data-elementor-type="wp-post" data-elementor-id="597" class="elementor elementor-597" data-elementor-post-type="post">
				<div class="elementor-element elementor-element-ad8f440 e-flex e-con-boxed e-con e-parent" data-id="ad8f440" data-element_type="container">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-55b5cd7 elementor-widget elementor-widget-text-editor" data-id="55b5cd7" data-element_type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p>V předchozím článku <a href="https://www.sraga.cz/sharepoint-online-jak-najit-a-smazat-prazdne-slozky/" target="_blank" rel="noopener">Sharepoint Online: Jak najít a smazat prázdné složky</a> jsem popisoval, jak lze pomocí knihovny <a href="https://www.sraga.cz/tag/pnp-powershell/" target="_blank" rel="noopener">PnP PowerShell</a> vytvořit report prázdných složek a tyto smazat z knihovny dokumentů.</p><p>Skripty, které jsem použil tak jsou plně funkční, ale narazil jsem na jednu dost podstatnou věc: potřebuji smazat prázdné složky z knihovny dokumentů, ale nikoliv z celé knihovny ale z <strong>konkrétní podsložky </strong>a to ty původní skripty neumí. Ale protože jsem tuto funkcionalitu opravdu potřeboval (procházím knihovnu, kde jsou tisíce složek), tak jsem si k tomu sednul a vyplodil jsem tento vytuněný skript:</p>								</div>
				</div>
				<div class="elementor-element elementor-element-c1bde0e elementor-widget elementor-widget-code-block-for-elementor" data-id="c1bde0e" data-element_type="widget" data-widget_type="code-block-for-elementor.default">
				<div class="elementor-widget-container">
					<pre class='line-numbers theme-okaidia' data-show-toolbar='yes'><code class='language-powershell'>#Parametery
$SiteURL = &quot;https://vas-tenant.sharepoint.com/sites/Site&quot;

# $DocumentLibraryName = &quot;Documents&quot;
$DocumentLibraryName = &quot;Sdilene dokumenty&quot;

$FolderSiteRelativeURL = &quot;$DocumentLibraryName/Slozka/Slozka/Archiv_Slozka/Nejnizsi slozka&quot;

# Testovaci rezim - pokud je true, neprovede vymaz ale jen vypis
$reportOnly = $true

# Zda exportovat do CSV
$timestamp = Get-Date -Format &quot;yyyy-MM-dd-HHmm&quot;
$CSVExport = $true
$CSVFile = &quot;C:\Temp\DeletedFolderReport-$timestamp.csv&quot;

# Nastavte na $true pouze, pokud mate plne otestovano; $true = nepta se na smazani, $false = zepta se pred smazanim
$force = $false
Connect-PnPOnline -Url $SiteURL  -Interactive

Function Delete-FolderContent($Folder){

    $EmptyFolderArray = @()

    $Subfolders = Get-PnPFolderItem -FolderSiteRelativeUrl $Folder  -ItemType Folder

    ForEach ($Subfolder in $Subfolders)
    {
        $folderPath = $Folder+&quot;/&quot;+$Subfolder.Name
        Write-host $folderPath -ForegroundColor Yellow 
        # Remdddove-PnPListItem -List $ListName -Identity $Item.Id -Recycle -Force
        Write-host &quot;Folder name:&quot;$Subfolder.Name&quot; - Items:&quot;$Subfolder.ItemCount

        #Get all files &amp; Reload Sub-folders from the given Folder
        $CountFiles = Get-PnPFolderItem -FolderSiteRelativeUrl $folderPath  -ItemType File
        $CountSubFolders = Get-PnPFolderItem -FolderSiteRelativeUrl $folderPath -ItemType Folder

        Write-host &quot; Files: &quot;$CountFiles.Count&quot;  Folders: &quot;$CountSubFolders.Count -ForegroundColor Cyan

        If ($CountFiles.Count -eq 0 -and $CountSubFolders.Count -eq 0)
        {
            Write-host &quot; Folder name: [&quot;$Subfolder.Name&quot;] - folder is empty - DELETE&quot; -ForegroundColor Green

            if ($reportOnly -ne $true){
                Write-Host &quot; Deleted folder:&quot; $Subfolder.Name &quot;in&quot; $Folder -ForegroundColor Red
                Remove-PnPFolder -Name $Subfolder.Name -Folder $Folder -force:$force -Recycle
            }
            else{
                Write-Host &quot; Report only: Deleted folder:&quot; $Subfolder.Name &quot;in&quot; $Folder -ForegroundColor Red
            }


            # Export do CSV

            If($CSVExport -eq $true){

                #Add the Data to Object
                $EmptyFolderData = New-Object PSObject
                $EmptyFolderData | Add-Member NoteProperty FolderName($Subfolder.Name)
                $EmptyFolderData | Add-Member NoteProperty RelativeURL($Folder)
                $EmptyFolderArray += $EmptyFolderData

                #Export to CSV File
                #$EmptyFolderArray | Export-CSV $CSVFile -NoTypeInformation -Append
            }
        }
        Else{
            
            Write-host &quot; Folder name: [&quot;$Subfolder.Name&quot;] - contains data - keep&quot; -ForegroundColor Red          

        }

        Write-host &quot;`n&quot;
        
        Delete-FolderContent($folderPath)
        
    }

    If($CSVExport -eq $true){

        #Export to CSV File
        $EmptyFolderArray | Export-CSV $CSVFile -NoTypeInformation -Append
    }

}

Delete-FolderContent($FolderSiteRelativeURL)</code></pre>				</div>
				</div>
				<div class="elementor-element elementor-element-4e1a7d1 elementor-widget elementor-widget-text-editor" data-id="4e1a7d1" data-element_type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p>Výše uvedený skript má několik základních parametrů:</p><div><p><strong>$SiteURL</strong> &#8211; adresa sharepoint webu</p><div><div><strong>$DocumentLibraryName</strong> &#8211; název knihovny dokumentů, většinou nabývá hodnoty &#8222;Documents&#8220; nebo &#8222;Sdilene Dokumenty&#8220; viz popisek <a href="https://www.sraga.cz/sharepoint-online-jak-najit-a-smazat-prazdne-slozky/" target="_blank" rel="noopener">v předchozím článku</a></div><div> </div><div><div><div><strong>$FolderSiteRelativeURL</strong> &#8211; relativní cesta ke složce, nad kterou chcete report a výmaz prázdných složek provést. Výmaz se provede rekurzivně.</div><div><div><div> </div><div><strong>$reportOnly</strong> &#8211; pokud je $true, simuluje se výmaz prázdné složky, ale reálně se neprovede</div></div></div><div><div><div> </div><div><strong>$CSVExport</strong> &#8211; pokud je $true, všechny složky, které neobsahují data a jsou určeny k výmazu, budou exportovány do CSV souboru <strong>$CSVFile</strong></div><div><div><div> </div><div><strong>$force</strong> &#8211; pokud je nastaveno na $true, systém se neptá, zda složku smazat, ale rovnou ji maže, pokud je nastaveno na $false, každý výmaz je potřeba potvrdit.</div></div></div></div></div></div></div></div></div>								</div>
				</div>
				<div class="elementor-element elementor-element-8720d71 elementor-widget elementor-widget-image" data-id="8720d71" data-element_type="widget" data-widget_type="image.default">
				<div class="elementor-widget-container">
																<a href="https://www.sraga.cz/wp-content/uploads/2024/04/pnp-delete-folder-confirm.png" data-elementor-open-lightbox="yes" data-elementor-lightbox-title="pnp-delete-folder-confirm" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NjAyLCJ1cmwiOiJodHRwczpcL1wvd3d3LnNyYWdhLmN6XC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8wNFwvcG5wLWRlbGV0ZS1mb2xkZXItY29uZmlybS5wbmcifQ%3D%3D">
							<img fetchpriority="high" decoding="async" width="768" height="118" src="https://www.sraga.cz/wp-content/uploads/2024/04/pnp-delete-folder-confirm-768x118.png" class="attachment-medium_large size-medium_large wp-image-602" alt="Potvrdit vymaz slozky" srcset="https://www.sraga.cz/wp-content/uploads/2024/04/pnp-delete-folder-confirm-768x118.png 768w, https://www.sraga.cz/wp-content/uploads/2024/04/pnp-delete-folder-confirm-300x46.png 300w, https://www.sraga.cz/wp-content/uploads/2024/04/pnp-delete-folder-confirm-1024x158.png 1024w, https://www.sraga.cz/wp-content/uploads/2024/04/pnp-delete-folder-confirm.png 1076w" sizes="(max-width: 768px) 100vw, 768px" />								</a>
															</div>
				</div>
				<div class="elementor-element elementor-element-12c5104 elementor-widget elementor-widget-text-editor" data-id="12c5104" data-element_type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p>Skript také pamatuje na to, že některé složky můžete smazat omylem, pokud tak učiníte, přesune smazaná data do koše. </p>								</div>
				</div>
				<div class="elementor-element elementor-element-5855bb3 elementor-widget elementor-widget-image" data-id="5855bb3" data-element_type="widget" data-widget_type="image.default">
				<div class="elementor-widget-container">
																<a href="https://www.sraga.cz/wp-content/uploads/2024/04/pnp-delete-folder-confirm2.png" data-elementor-open-lightbox="yes" data-elementor-lightbox-title="pnp-delete-folder-confirm2" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NjE2LCJ1cmwiOiJodHRwczpcL1wvd3d3LnNyYWdhLmN6XC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8wNFwvcG5wLWRlbGV0ZS1mb2xkZXItY29uZmlybTIucG5nIn0%3D">
							<img decoding="async" width="768" height="213" src="https://www.sraga.cz/wp-content/uploads/2024/04/pnp-delete-folder-confirm2-768x213.png" class="attachment-medium_large size-medium_large wp-image-616" alt="Potvrdit vymaz slozky" srcset="https://www.sraga.cz/wp-content/uploads/2024/04/pnp-delete-folder-confirm2-768x213.png 768w, https://www.sraga.cz/wp-content/uploads/2024/04/pnp-delete-folder-confirm2-300x83.png 300w, https://www.sraga.cz/wp-content/uploads/2024/04/pnp-delete-folder-confirm2.png 842w" sizes="(max-width: 768px) 100vw, 768px" />								</a>
															</div>
				</div>
				<div class="elementor-element elementor-element-a93b3b5 elementor-widget elementor-widget-text-editor" data-id="a93b3b5" data-element_type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p>Jednou z dalších vychytávek, zejména pro zpětnou kontrolu, je výpis aktuální zpracovávané pozice včetně informace o počtu souborů a složek v dané složce</p>								</div>
				</div>
				<div class="elementor-element elementor-element-677c514 elementor-widget elementor-widget-image" data-id="677c514" data-element_type="widget" data-widget_type="image.default">
				<div class="elementor-widget-container">
																<a href="https://www.sraga.cz/wp-content/uploads/2024/04/pnp-delete-folder-keep.png" data-elementor-open-lightbox="yes" data-elementor-lightbox-title="pnp-delete-folder-keep" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NjA2LCJ1cmwiOiJodHRwczpcL1wvd3d3LnNyYWdhLmN6XC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8wNFwvcG5wLWRlbGV0ZS1mb2xkZXIta2VlcC5wbmcifQ%3D%3D">
							<img decoding="async" width="768" height="73" src="https://www.sraga.cz/wp-content/uploads/2024/04/pnp-delete-folder-keep-768x73.png" class="attachment-medium_large size-medium_large wp-image-606" alt="Report prazdne slozky SharePoint Online" srcset="https://www.sraga.cz/wp-content/uploads/2024/04/pnp-delete-folder-keep-768x73.png 768w, https://www.sraga.cz/wp-content/uploads/2024/04/pnp-delete-folder-keep-300x28.png 300w, https://www.sraga.cz/wp-content/uploads/2024/04/pnp-delete-folder-keep.png 823w" sizes="(max-width: 768px) 100vw, 768px" />								</a>
															</div>
				</div>
				<div class="elementor-element elementor-element-8996927 elementor-widget elementor-widget-heading" data-id="8996927" data-element_type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h2 class="elementor-heading-title elementor-size-default">Závěrem</h2>				</div>
				</div>
				<div class="elementor-element elementor-element-f86cf3c elementor-widget elementor-widget-text-editor" data-id="f86cf3c" data-element_type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p>Pokud potřebujete ve vaší organizaci pomoct s migrací do Microsoft 365 nebo Azure, vyřešit zabezpečení nebo proškolit uživatele, <a href="https://www.sraga.cz/kontakt/">ozvěte se mi</a>, určitě něco vymyslíme.</p>								</div>
				</div>
					</div>
				</div>
				</div>
		]]></content:encoded>
					
					<wfw:commentRss>https://www.sraga.cz/sharepoint-online-jak-najit-a-smazat-prazdne-slozky-tuned/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Sharepoint (Teams) &#8211; report sdílení</title>
		<link>https://www.sraga.cz/sharepoint-teams-report-sdileni/</link>
					<comments>https://www.sraga.cz/sharepoint-teams-report-sdileni/#respond</comments>
		
		<dc:creator><![CDATA[c]]></dc:creator>
		<pubDate>Wed, 07 Feb 2024 15:06:51 +0000</pubDate>
				<category><![CDATA[Microsoft 365]]></category>
		<category><![CDATA[Sharepoint]]></category>
		<category><![CDATA[Report]]></category>
		<category><![CDATA[Sdílení]]></category>
		<category><![CDATA[Teams]]></category>
		<guid isPermaLink="false">https://www.sraga.cz/?p=163</guid>

					<description><![CDATA[Potkal nás projekt, v jehož rámci bylo potřeba zjistit, jaká data na Sharepointu (Teams) jsou sdílena a s kým jsou tato data sdílena. Věděli jste, že Microsoft má komponentu &#8222;Využití webu&#8220; v rámci které je i report sdílení? 1. Otevřete si Sharepoint stránku (Sharepoint site), u které potřebujete zjistit, co a s kým je sdíleno ... <a title="Sharepoint (Teams) &#8211; report sdílení" class="read-more" href="https://www.sraga.cz/sharepoint-teams-report-sdileni/" aria-label="Číst více o Sharepoint (Teams) &#8211; report sdílení">Číst dál</a>]]></description>
										<content:encoded><![CDATA[		<div data-elementor-type="wp-post" data-elementor-id="163" class="elementor elementor-163" data-elementor-post-type="post">
				<div class="elementor-element elementor-element-53fe69e e-flex e-con-boxed e-con e-parent" data-id="53fe69e" data-element_type="container">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-d537bdf elementor-widget elementor-widget-text-editor" data-id="d537bdf" data-element_type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p>Potkal nás projekt, v jehož rámci bylo potřeba zjistit, jaká data na Sharepointu (Teams) jsou sdílena a s kým jsou tato data sdílena.</p><p>Věděli jste, že Microsoft má komponentu &#8222;Využití webu&#8220; v rámci které je i report sdílení?</p><p>1. <strong>Otevřete si Sharepoint</strong> stránku (Sharepoint site), u které potřebujete zjistit, co a s kým je sdíleno</p><p>2. Klikněte na <strong>Nastavení</strong> (ikona ozubeného kola)</p><p>3. Klikněte na <strong>Využití webu</strong></p>								</div>
				</div>
				<div class="elementor-element elementor-element-b7e9dee elementor-widget elementor-widget-image" data-id="b7e9dee" data-element_type="widget" data-widget_type="image.default">
				<div class="elementor-widget-container">
												<figure class="wp-caption">
											<a href="https://www.sraga.cz/wp-content/uploads/2024/02/sharepoint_sharing_report_1.png" data-elementor-open-lightbox="yes" data-elementor-lightbox-title="sharepoint_sharing_report_1" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTcwLCJ1cmwiOiJodHRwczpcL1wvd3d3LnNyYWdhLmN6XC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8wMlwvc2hhcmVwb2ludF9zaGFyaW5nX3JlcG9ydF8xLnBuZyJ9">
							<img loading="lazy" decoding="async" width="768" height="413" src="https://www.sraga.cz/wp-content/uploads/2024/02/sharepoint_sharing_report_1-768x413.png" class="attachment-medium_large size-medium_large wp-image-170" alt="Sharepoint (Teams) - report sdílení" srcset="https://www.sraga.cz/wp-content/uploads/2024/02/sharepoint_sharing_report_1-768x413.png 768w, https://www.sraga.cz/wp-content/uploads/2024/02/sharepoint_sharing_report_1-300x161.png 300w, https://www.sraga.cz/wp-content/uploads/2024/02/sharepoint_sharing_report_1-1024x550.png 1024w, https://www.sraga.cz/wp-content/uploads/2024/02/sharepoint_sharing_report_1-1536x826.png 1536w, https://www.sraga.cz/wp-content/uploads/2024/02/sharepoint_sharing_report_1.png 1920w" sizes="(max-width: 768px) 100vw, 768px" />								</a>
											<figcaption class="widget-image-caption wp-caption-text"></figcaption>
										</figure>
									</div>
				</div>
				<div class="elementor-element elementor-element-35da0ab elementor-widget elementor-widget-text-editor" data-id="35da0ab" data-element_type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p>4. Skrolujte do spodní části obrazovky a klikněte na <strong>Spustit sestavu</strong></p>								</div>
				</div>
				<div class="elementor-element elementor-element-db32229 elementor-widget elementor-widget-image" data-id="db32229" data-element_type="widget" data-widget_type="image.default">
				<div class="elementor-widget-container">
																<a href="https://www.sraga.cz/wp-content/uploads/2024/02/sharepoint_sharing_report_2.png" data-elementor-open-lightbox="yes" data-elementor-lightbox-title="sharepoint_sharing_report_2" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTY5LCJ1cmwiOiJodHRwczpcL1wvd3d3LnNyYWdhLmN6XC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8wMlwvc2hhcmVwb2ludF9zaGFyaW5nX3JlcG9ydF8yLnBuZyJ9">
							<img loading="lazy" decoding="async" width="768" height="413" src="https://www.sraga.cz/wp-content/uploads/2024/02/sharepoint_sharing_report_2-768x413.png" class="attachment-medium_large size-medium_large wp-image-169" alt="Sharepoint (Teams) - report sdílení" srcset="https://www.sraga.cz/wp-content/uploads/2024/02/sharepoint_sharing_report_2-768x413.png 768w, https://www.sraga.cz/wp-content/uploads/2024/02/sharepoint_sharing_report_2-300x161.png 300w, https://www.sraga.cz/wp-content/uploads/2024/02/sharepoint_sharing_report_2-1024x550.png 1024w, https://www.sraga.cz/wp-content/uploads/2024/02/sharepoint_sharing_report_2-1536x826.png 1536w, https://www.sraga.cz/wp-content/uploads/2024/02/sharepoint_sharing_report_2.png 1920w" sizes="(max-width: 768px) 100vw, 768px" />								</a>
															</div>
				</div>
				<div class="elementor-element elementor-element-e113617 elementor-widget elementor-widget-text-editor" data-id="e113617" data-element_type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p>5. <strong>Vyberte složku</strong>, do které se report uloží a klikněte na tlačítko <strong>Uložit</strong></p>								</div>
				</div>
				<div class="elementor-element elementor-element-0fc1f11 elementor-widget elementor-widget-image" data-id="0fc1f11" data-element_type="widget" data-widget_type="image.default">
				<div class="elementor-widget-container">
																<a href="https://www.sraga.cz/wp-content/uploads/2024/02/sharepoint_sharing_report_3.png" data-elementor-open-lightbox="yes" data-elementor-lightbox-title="sharepoint_sharing_report_3" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTY4LCJ1cmwiOiJodHRwczpcL1wvd3d3LnNyYWdhLmN6XC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8wMlwvc2hhcmVwb2ludF9zaGFyaW5nX3JlcG9ydF8zLnBuZyJ9">
							<img loading="lazy" decoding="async" width="768" height="413" src="https://www.sraga.cz/wp-content/uploads/2024/02/sharepoint_sharing_report_3-768x413.png" class="attachment-medium_large size-medium_large wp-image-168" alt="Sharepoint (Teams) - report sdílení" srcset="https://www.sraga.cz/wp-content/uploads/2024/02/sharepoint_sharing_report_3-768x413.png 768w, https://www.sraga.cz/wp-content/uploads/2024/02/sharepoint_sharing_report_3-300x161.png 300w, https://www.sraga.cz/wp-content/uploads/2024/02/sharepoint_sharing_report_3-1024x550.png 1024w, https://www.sraga.cz/wp-content/uploads/2024/02/sharepoint_sharing_report_3-1536x826.png 1536w, https://www.sraga.cz/wp-content/uploads/2024/02/sharepoint_sharing_report_3.png 1920w" sizes="(max-width: 768px) 100vw, 768px" />								</a>
															</div>
				</div>
				<div class="elementor-element elementor-element-ab07c16 elementor-widget elementor-widget-text-editor" data-id="ab07c16" data-element_type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p>6. V levém menu klkněte na knihovnu dokumentů, typicky se jmenuje <strong>Dokumenty</strong> nebo Documents</p><p>7. Vyberte složku, kterou jste v předchozím kroku zvolili pro uložení reportu</p>								</div>
				</div>
				<div class="elementor-element elementor-element-31aa426 elementor-widget elementor-widget-image" data-id="31aa426" data-element_type="widget" data-widget_type="image.default">
				<div class="elementor-widget-container">
																<a href="https://www.sraga.cz/wp-content/uploads/2024/02/sharepoint_sharing_report_4.png" data-elementor-open-lightbox="yes" data-elementor-lightbox-title="sharepoint_sharing_report_4" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTY3LCJ1cmwiOiJodHRwczpcL1wvd3d3LnNyYWdhLmN6XC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI0XC8wMlwvc2hhcmVwb2ludF9zaGFyaW5nX3JlcG9ydF80LnBuZyJ9">
							<img loading="lazy" decoding="async" width="768" height="413" src="https://www.sraga.cz/wp-content/uploads/2024/02/sharepoint_sharing_report_4-768x413.png" class="attachment-medium_large size-medium_large wp-image-167" alt="Sharepoint (Teams) - report sdílení" srcset="https://www.sraga.cz/wp-content/uploads/2024/02/sharepoint_sharing_report_4-768x413.png 768w, https://www.sraga.cz/wp-content/uploads/2024/02/sharepoint_sharing_report_4-300x161.png 300w, https://www.sraga.cz/wp-content/uploads/2024/02/sharepoint_sharing_report_4-1024x550.png 1024w, https://www.sraga.cz/wp-content/uploads/2024/02/sharepoint_sharing_report_4-1536x826.png 1536w, https://www.sraga.cz/wp-content/uploads/2024/02/sharepoint_sharing_report_4.png 1920w" sizes="(max-width: 768px) 100vw, 768px" />								</a>
															</div>
				</div>
				<div class="elementor-element elementor-element-393a6fc elementor-widget elementor-widget-text-editor" data-id="393a6fc" data-element_type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p>8. Klikněte na <strong>nově vytvořený soubor</strong> a otevřete jej</p>								</div>
				</div>
				<div class="elementor-element elementor-element-9b261a1 elementor-widget elementor-widget-image" data-id="9b261a1" data-element_type="widget" data-widget_type="image.default">
				<div class="elementor-widget-container">
															<img loading="lazy" decoding="async" width="900" height="483" src="https://www.sraga.cz/wp-content/uploads/2024/02/sharepoint_sharing_report_5-1024x550.png" class="attachment-large size-large wp-image-166" alt="Sharepoint (Teams) - report sdílení" srcset="https://www.sraga.cz/wp-content/uploads/2024/02/sharepoint_sharing_report_5-1024x550.png 1024w, https://www.sraga.cz/wp-content/uploads/2024/02/sharepoint_sharing_report_5-300x161.png 300w, https://www.sraga.cz/wp-content/uploads/2024/02/sharepoint_sharing_report_5-768x413.png 768w, https://www.sraga.cz/wp-content/uploads/2024/02/sharepoint_sharing_report_5-1536x826.png 1536w, https://www.sraga.cz/wp-content/uploads/2024/02/sharepoint_sharing_report_5.png 1920w" sizes="(max-width: 900px) 100vw, 900px" />															</div>
				</div>
				<div class="elementor-element elementor-element-d2125b3 elementor-widget elementor-widget-text-editor" data-id="d2125b3" data-element_type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p>9. Aby bylo možné s vytvořeným CSV souborem dále pracovat, klikněte na <strong>Zobrazení</strong> a <strong>Provádění úprav</strong></p><p>10. Soubor si přizpůsobte dle vlastních potřeb</p>								</div>
				</div>
				<div class="elementor-element elementor-element-bf70537 elementor-widget elementor-widget-image" data-id="bf70537" data-element_type="widget" data-widget_type="image.default">
				<div class="elementor-widget-container">
															<img loading="lazy" decoding="async" width="900" height="483" src="https://www.sraga.cz/wp-content/uploads/2024/02/sharepoint_sharing_report_6-1024x550.png" class="attachment-large size-large wp-image-165" alt="Sharepoint (Teams) - report sdílení" srcset="https://www.sraga.cz/wp-content/uploads/2024/02/sharepoint_sharing_report_6-1024x550.png 1024w, https://www.sraga.cz/wp-content/uploads/2024/02/sharepoint_sharing_report_6-300x161.png 300w, https://www.sraga.cz/wp-content/uploads/2024/02/sharepoint_sharing_report_6-768x413.png 768w, https://www.sraga.cz/wp-content/uploads/2024/02/sharepoint_sharing_report_6-1536x826.png 1536w, https://www.sraga.cz/wp-content/uploads/2024/02/sharepoint_sharing_report_6.png 1920w" sizes="(max-width: 900px) 100vw, 900px" />															</div>
				</div>
				<div class="elementor-element elementor-element-0798a7c elementor-widget elementor-widget-heading" data-id="0798a7c" data-element_type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h2 class="elementor-heading-title elementor-size-default">Videonávod</h2>				</div>
				</div>
				<div class="elementor-element elementor-element-a4c0d2b elementor-widget elementor-widget-video" data-id="a4c0d2b" data-element_type="widget" data-settings="{&quot;youtube_url&quot;:&quot;https:\/\/youtu.be\/Y3gh9Cr6pZM&quot;,&quot;video_type&quot;:&quot;youtube&quot;,&quot;controls&quot;:&quot;yes&quot;}" data-widget_type="video.default">
				<div class="elementor-widget-container">
							<div class="elementor-wrapper elementor-open-inline">
			<div class="elementor-video"></div>		</div>
						</div>
				</div>
					</div>
				</div>
				</div>
		]]></content:encoded>
					
					<wfw:commentRss>https://www.sraga.cz/sharepoint-teams-report-sdileni/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
