Showing results for April 2015 - Page 10 of 13 - Scripting Blog [archived]

Apr 8, 2015
Post comments count0
Post likes count0

PowerTip: Use PowerShell to Find Files Newer than a Date

Doctor Scripto
Doctor Scripto

Summary: Use the Windows PowerShell to see if a file exists more recent than a certain date.  How can I use Windows PowerShell to see if a file more recent than a specific date exists in a folder?  Use the Test-Path cmdlet, specify the folder, and use the –NewerThan parameter.           &...

Scripting Guy!Windows PowerShellPowerTip
Apr 8, 2015
Post comments count0
Post likes count0

Meet the PowerShell Summit 2015 Speakers #3

Doctor Scripto
Doctor Scripto

Summary: Microsoft PowerShell MVP, Teresa Wilson, talks about the Windows PowerShell Summit speakers. Microsoft Scripting Guy, Ed Wilson, is here. The Scripting Wife, Teresa Wilson, is my guest blogger all week. She is bringing you information about the speakers for the North America PowerShell Summit 2015 and their sessions. Don’t worry if y...

Scripting Guy!Windows PowerShellguest blogger
Apr 7, 2015
Post comments count0
Post likes count0

PowerTip: Use PowerShell to See Hidden and Non-Hidden Files

Doctor Scripto
Doctor Scripto

Summary: Learn how to use Windows PowerShell to see hidden and non-hidden files.    How can I use Windows PowerShell to see all hidden and non-hidden files in a folder?  Use the Get-ChildItem cmdlet and specify the –File and the –Force switches.            Here i...

Scripting Guy!Windows PowerShellPowerTip
Apr 7, 2015
Post comments count0
Post likes count0

Meet the PowerShell Summit 2015 Speakers #2

Doctor Scripto
Doctor Scripto

Summary: Microsoft PowerShell MVP, Teresa Wilson, talks about the Windows PowerShell Summit speakers. Microsoft Scripting Guy, Ed Wilson, is here. Welcome back guest blogger, Teresa Wilson, as she continues introducing you to the speakers for the PowerShell Summit and their sessions. Thanks Ed. I'm glad to have this opportunity to tell you a l...

Scripting Guy!Windows PowerShellguest blogger
Apr 6, 2015
Post comments count0
Post likes count0

PowerTip: Use PowerShell to Display Only Hidden Files

Doctor Scripto
Doctor Scripto

Summary: Use Windows PowerShell to display only hidden files.  How can I use Windows PowerShell to locate only hidden files?  Use the Get-ChildItem cmdlet and specify the Not Directory and the Hidden attributes (abbreviate as !d+h): gci -Att !d+h

Scripting Guy!Windows PowerShellPowerTip