Delete Disabled AD Account Using PowerShell
Active directory user Enabled property tells the user is enabled or disabled. If the Enabled property value is True, the ad user is active else …
Active directory user Enabled property tells the user is enabled or disabled. If the Enabled property value is True, the ad user is active else …
IIS (Internet Information Services) web server in Windows OS is used to host static or dynamic websites. To get the trust of users of your …
Use the New-SelfSignedCertificate cmdlet in PowerShell to create a self-signed certificate for the IIS website in the LocalMachine\My store. Self-Signed certificates are created for testing …
PowerShell Grep equivalent cmdlet is Select-String which uses regular expressions to search string in files. Select-String cmdlet in Powershell works similar to grep in UNIX …
The main reason for setting up the Active Directory Password Policy is to ensure that all users are using sufficiently secure passwords. This can be …
Use the [Net.HttpWebRequest] library to create a connection to the website URI and GetResponse() that contains SSL certificate information like Handle, Issuer, Subject, Expiration Date, …
In PowerShell, use GetCertHashString() method associated with ServicePoint.Certificate to get SSL certificate thumbprint or cert hash value. Thumbprint or certificate hash is a unique identifier …
SSL ( Secure Sockets Layer) is a digital certificate that provides an encrypted connection between server and client and authenticates a website identity. To keep …
Use environment variable %username% to get the currently logged-in user name using cmd in the Windows system. Environment variables store the current user logged-in information. …
The certificate has a SerialNumber property that is used to get the certificate serial number in PowerShell. It returns the string type value. Use the …