Skip to main content
Search
Search This Blog
At the frontier of technology and business
Pages
Home
More…
Share
Get link
Facebook
X
Pinterest
Email
Other Apps
January 01, 2023
My Powershell Treatsheet
Purpose
Code
List files which do not contain a string
gci |foreach-object{if (-not (select-string -inputobject $_ -Pattern "something")){$_}}
Test Net Connection
Test-NetConnection
-Port
80
-InformationLevel
"Detailed"
Comments
Popular Posts
November 01, 2012
Microsoft Terminal Server (Remote Desktop) client span across multiple monitors
April 08, 2018
Enable ssh and telnet on Xiaomi MiWifi R1CM without registering with Xiaomi
Comments