Skip to content

Latest commit

 

History

History
69 lines (59 loc) · 1.66 KB

File metadata and controls

69 lines (59 loc) · 1.66 KB

The 'list-network-shares.ps1' Script

This PowerShell script lists all network shares (aka "shared folders") of the local computer.

Parameters

PS> ./list-network-shares.ps1 [<CommonParameters>]

[<CommonParameters>]
    This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, 
    WarningVariable, OutBuffer, PipelineVariable, and OutVariable.

Example

PS> ./list-network-shares.ps1
✅ Shared \\LAPTOP\Public folder from D:\Public ('File transfer folder')

Notes

Author: Markus Fleschutz | License: CC0

Related Links

https://github.com/fleschutz/PowerShell

Script Content

<#
.SYNOPSIS
	List network shares
.DESCRIPTION
	This PowerShell script lists all network shares (aka "shared folders") of the local computer.
.EXAMPLE
	PS> ./list-network-shares.ps1
	✅ Shared \\LAPTOP\Public folder from D:\Public ('File transfer folder')
.LINK
	https://github.com/fleschutz/PowerShell
.NOTES
	Author: Markus Fleschutz | License: CC0
#>

try {
	if ($IsLinux -or $IsMacOS) {
		# TODO
	} else {
		$shares = Get-WmiObject win32_share | where {$_.name -NotLike "*$"} 
		foreach ($share in $shares) {
			if ($share.Description -eq "") {
				Write-Host "✅ Shared \\$(hostname)\$($share.Name) from $($share.Path)"
			} else {
				Write-Host "✅ Shared \\$(hostname)\$($share.Name) from $($share.Path) ('$($share.Description)')"
			}
		}
	}
	exit 0 # success
} catch {
	"⚠️ ERROR: $($Error[0]) (script line $($_.InvocationInfo.ScriptLineNumber))"
	exit 1
}

(page generated by convert-ps2md.ps1 as of 04/19/2026 17:57:01)