Skip to content

Instantly share code, notes, and snippets.

@sdaaish
Last active April 9, 2019 20:21
Show Gist options
  • Save sdaaish/6bd3b839864c52e4e35abe963144c428 to your computer and use it in GitHub Desktop.
Save sdaaish/6bd3b839864c52e4e35abe963144c428 to your computer and use it in GitHub Desktop.
Powershell SMB examples
System Ip Type Other
dev.idg.se 1.1.1.1 Ubuntu Development
hr.dn.se 2.2.2.2 Debian Human Resources
www.gp.se 3.3.3.3 FreeBsd Front web site
$csv = import-csv 2.csv
$csv|Add-Member -NotePropertyName ShortHost -NotePropertyValue ''
$collection = @()
foreach($i in $csv){
$i.shorthost = ($i.system).split(".")[0]
$collection += $i
}
$collection|select-object System,ShortHost,Ip,Type,Other
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment