简体   繁体   中英

Exporting Powershell Script to CSV columns

We are moving to a new file share location and we are trying to pull all of the current mapped drives on the domain by using a logon script that is utilizing netuse.

I have tried to export-csv and it does not return the correct data it just shows the length of what should be there:

wmic netuse get remotename,username | out-file -append \\\\PATHTOFILE.csv

Is the entirety of the script that is running.

Per Ctznkane525's link:

You could try something like this:

Get-PSDrive -PSProvider FileSystem | Select-Object Name,Provider | ConvertTo-Csv -NoTypeInformation | Out-File -Append "Path"

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM