Copying Outlook Signatures From Other Computer
If you have created Outlook email signatures and you migrated to a new system, these signatures can be copied from the old computer so you can then use the signatures…
If you have created Outlook email signatures and you migrated to a new system, these signatures can be copied from the old computer so you can then use the signatures…
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 how to setup you laptop with a closed lid and external monitor. In my case I got a big external monitor as I really needed a large screen…
Here is a quick scrip to pull report on recent password changes for users in Active Directory: Import-Module ActiveDirectory $DateCutOff = (Get-Date).AddDays(-5) Get-ADUser -Filter * -Property passwordlastset | Where-Object {…
Active Directory depends on DNS for name resolution and locating resources on a network. DNS has a database that maintains resource records, which helps identify various servers, domains, and services…
Sometimes there are situation that you need to troubleshoot Active Directory connectivity and you need to know to which server the user authenticated to. There are few ways to find…
Everyone needs a phone. Not everyone wants to be spied on. Reclaim your privacy with GrapheneOS. Here is an opportunity for you to keep your phone secure and private as…
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 …
Here are few quick one liners such as add user to 2 AD groups at same time: "Managers","SalesRep" | Add-ADGroupMember -Members ` (Read-Host -Prompt "Enter User Name") Add multiple user…
Quick PowerShell script to accomplish a task to get a list of users by SamAccountName from provided csv file with email addresses. The csv file has one column "email' under…