What is God Mode in Windows 11
What is God Mode in Windows 11? The so-called God Mode is a direct access to over 200 system administration tools. It gets this curious name because many Windows settings can be adjusted…
What is God Mode in Windows 11? The so-called God Mode is a direct access to over 200 system administration tools. It gets this curious name because many Windows settings can be adjusted…
KASM WORKSPACES is great solution for secure browsing. The Workspaces platform provides enterprise-class orchestration, data loss prevention, and web streaming technology to enable the delivery of containerized workloads to your…
Here is a quick way to add new SMTP/ProxyAddress for the users in Active Directory with use of PowerShell. Create a csv file with two columns samaccountname | emailaddress john.doe …
Simple script to get information via PowerShell from the computer about model of the machine and vendor. Clear-Host Write-Host Write-Host * Get Computer Vendor and Model information * -ForegroundColor white…
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…
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…
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.…
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…