Windows’s auditing policies allow storing log-on and log off events in the event logs. When enabled, every successful (and unsuccessful) log-on and log-off event can be found inside the Security …
Powershell
-
-
Windows drivers are not something a regular PC user cares about. One might start thinking about drivers only when games stop working (or working poorly) or when they need to …
-
We can all agree that drag-and-drop upload is one of the greatest conveniences in SharePoint Online. You can select multiple files or entire folders and drag them directory to your …
-
Part of troubleshooting a Windows computer is finding out the operating system version. A typical user would know to check the computer’s properties to see the Windows version and build, …
-
A powerful Test-Connection PowerShell cmdlet is available as a replacement for the ping command in Windows. The Test-Connection command allows you to send ICMP echo requests packets to one or …
-
It’s common for homes nowadays to have private home lab hosting services, like a media server or FTP server. In some cases, users would want to make these private services …
-
You can use PowerShell Remoting (which appeared in PowerShell 2.0) to run commands or scripts on one or several remote computers. PS Remoting is based on the Web Services for …
-
Remote Desktop Protocol (RDP) is a popular, simple, and convenient way to connect to remote Windows computers. Thanks to RDP, you get full access to the graphical desktop environment of …
-
PowerShell has several ways to write data and messages to the console. You can use the Write-Host, Write-Output, Write-Information, or [console]::WriteLine commands. How do we use these commands to output …