PowerTip of the Day, from PowerShell.com: Use the provider name instead of a drive name when you need to get a list of all...
My PowerShell Story: PowerShell and I
hi, Thanks to http://www.powershellmagazine.com they just upload my powershell story yesterday. you can read the complete story here: http://www.powershellmagazine.com/2011/12/12/powershell-and-i/ thanks aman
Change Service Start Mode using PowerShell
PowerTip of the Day, from PowerShell.com: You can use WMI like this if you want to change a service start mode:([wmi]'Win32_Service.Name="Spooler"').ChangeStartMode('Automatic').ReturnValue([wmi]'Win32_Service.Name="Spooler"').ChangeStartMode('Manual').ReturnValue Note that a...
Storing Pictures in Active Directory
PowerTip of the Day, from PowerShell.com: When you need to store a picture into an AD account, the picture will have to be converted...
Finding IP and MAC address
PowerTip of the Day, from PowerShell.com: Finding IP and MAC address When you query network adapters with WMI, it is not easy to...
“Find how many types of files you have in you laptop” using Powershell.
Hi Today i was searching for one PDF file on my laptop and then I just thinks “How Many PDF files do i have?”,...
Finding Network Adapter Data Based On Connection Name
PowerTip of the Day, from PowerShell.com Sometimes it would be nice to be able to access network adapter configuration based on the name of...
How to find “Stopped” windows Services, whose start up mode is set to “Automatic” using PowerShell.
Hi, I called these services as “Problematic services”. The start-up mode of these services are “Automatically” so that whenever windows starts or reboot these services...
Outputting Text Reports without Truncating
PowerTip of the Day, from PowerShell.com:If you want to capture PowerShell results in a text file, you can redirect the results or pipe them to...