Use PowerShell and Microsoft Graph to forcefully synchronise all Intune managed devices.
Quick couple of lines to disable multicast traffic on a specific interface or port. interface GigabitEthernet1/0/1 switchport block multicast storm-control…
To view the Uptime on your Cisco device, login to the device and run the following command: hostname# Show Version…
This article will outline the steps and configuration required to configure username and password for a Cisco router or switch.…
This article describes how to check if a temporary table exists before you delete it. IF OBJECT_ID(‘tempdb..#tmpTable’) IS NOT NULL…
This article will show briefly guide you through how to smoothly animate a background color change using jQuery. jQuery Version:…
This article will demonstrate how to configure a cisco router to allow the wireless and wired networks to communicate on…
I know this is a simple thing, but its one thats easy to forget, anf you can find yourself in…
Powershell script to delete a folder or directory if it exists: $strFolderName=”c:\temp\” If (Test-Path $strFolderName){ Remove-Item $strFolderName } See Also:…
Powershell script to check if a file exists $strFileName=”c:\filename.txt” If (Test-Path $strFileName){ # // File exists }Else{ # // File…