Category Microsoft Windows 10

VMware Horizon and Zero Clients Enabling Rapid Remote Secure IT Working

2020, the year where the country went into lock down. In the UK we were told to work from home. This got me thinking more about options for rapid deployment…

Read More

Outlook Credentials Flashing and Closing Constantly

Challenge : Outlook would connect to one MS365 mailbox but then started constantly flashing for authentication for the disconnected Hotmail mailbox, but the credentials window disappears before being able to…

Read More

Azure – Monitoring Alert On Virtual Machine CPU Usage

Create a monitoring alert on virtual machine CPU spike/usage. Prep work you will need a virtual machine to monitor. An action group set to send emails to admins For this…

Read More

Ping sweep script test

POWERSHELL import-CSV "" | foreach { $result = Test-Connection -ComputerName $_.Name -Count 1 -Quiet $_.name, $result -join ',' | out-file "c:\scripts\PingSweep\computer_results.txt" -Append } COMMAND /BATCH SCRIPT Create list of computers…

Read More

List all users in the domain and email addresses

 import-module activedirectory #List all users in the domain # Display Name and Email Address get-aduser -Filter *  -SearchBase "dc=Test,dc=com" -Properties Displayname,emailaddress | select displayname ,emailaddress | Export-Csv C:\temp\users_and_email.csv     

Read More