Get battery health report on Windows laptop
You can gen easily two reports about your laptop battery under Windows 10. Simply press [Windows]+[R] and type [cmd]. Once in command line window you can use these two commands…
You can gen easily two reports about your laptop battery under Windows 10. Simply press [Windows]+[R] and type [cmd]. Once in command line window you can use these two commands…
Quick one liner to find out current version of the Active Directory Schema on your network especially of you have mix of servers. Using dsquery utility: dsquery * cn=schema,cn=configuration,dc=domainname,dc=local -scope…
Here is another quick helper for Help Desk guys to pull quickly information about user in PowerShell: SamAccountName Title Department Manager In this case the manager will be show as…
Quick Help Desk script tool in PowerShell to reset user password : [cc lang="PowerShell"] Clear-Host Import-Module ActiveDirectory $newpwd = Read-Host "[ Enter the new password ]" -AsSecureString $User = Read-Host…
After you’ve logged into Windows Server Core, you’re presented with the Command Prompt. From there, you can activate your copy of Windows. First, you have to set the key. You…
This is handy command line if you want pull quickly list of installed software on the machine. You can output it in to terminal or into text file for latter.…
The Server Manager wizard provides information of installed roles and features in [easyazon_link identifier="1118289420" locale="US" tag="wn0d5-20"] Windows Server 2012 R2 [/easyazon_link]. This Server Manager wizard will be automatically launched at…
Whenever I connect my USB to PC it says “you need to format the disk in drive before you can use it”. When I try to format, it shows the disk capacity as 662MB which is the Linux image file size and not the original size of 8GB. How do I format the USB drive and start using it like before?
Here is quick PowerShell script to remove ALL Group Membership from Disabled user in Active Directory. We will remove all Group membership from this user except Domain User group. So…
Here is quick [easyazon_link identifier="1787122042" locale="US" tag="wn0d5-20"] PowerShell [/easyazon_link] script that provides information on user count in [easyazon_link identifier="1782175997" locale="US" tag="wn0d5-20"] Active directory [/easyazon_link]: Total Number of All user accounts…