Scripts below can be run on a server/workstation to get network shares on a remote server or remote workstation. The first script below will prompt for a password for authentication to get the network shares on the target specified. After the correct password has been entered, script will display the available network shares of the specified target. A pop up box will open and user needs to enter the necessary credentials for the script to proceed its to connect to the remote computer and get the available shared folders. The script will require user intervention to key in manually the details. #========================= $Computer = "server1" $domain="myXdomain" $username="xDomainOwner" $UserDomain = $domain + "\" + $username #This line below should be in one line or else there will be an error $xWmiObj =Get-WmiObject -Namespace "root\cimv2" -Class Win32_share -Impersonation 3 -Credential $U...
Make the world a better place by sharing knowledge, ideas and anything that you can give that comes from the heart.