-
Powershell
How to see what network drives a remote computer is connected to using powershell
In our Powershell series for performing day to day administrative tasks we want to move on to a task that many admins may need to perform as an information gathering tool in troubleshooting, etc. ย That task is finding what network…
-
Powershell
How to start and stop services remotely using Powershell
Powershell is one of the coolest new things that has happened to Windows in recent iterations. ย It provides a wealth of scripting power to administrators and even to home users who may want to do some things quickly and efficiently…
-
Networking
How to configure and implement network QoS using Untangle
In today’s networks, connectivity is an essential part of successful communication in businesses an enterprise environments. ย Even though bandwidth is cheap these days, it is still a priority for network administrators to prioritize and limit mission critical traffic and non…
-
Networking
Untangle Bridge mode not working for internal subnets
Recently in working with a client who had implemented an Untangle box in their environment for UTM purposes, they ran into the issue of other internal subnets within their network not being able to connect to the Internet. ย The hosts…
-
Cloud
Users can’t login to Office 365 email after migration from Live@Edu
Recently, in working with an educational institution on issues their students were having logging into Office 365 after the mandatory upgrade from Microsoft, we stumbled on a problem and fix that resolved issues many students were having with their account…
-
SQL
How to find the SSRS Job Name with the Report Name SQL
In order to check the status of the SSRS report subscription jobs, status, and the last run time, run the following SQL script against the MASTER DB. ย It will list: report id report name last status SELECT cย .Nameย ASย ReportName ,ย rsย .ย ScheduleIDย ASย JOB_NAME ,ย sย .ย [Description]…
-
Powershell
Automate joining a workstation to a domain using powershell and a batch file
If you are a network admin looking for an easy way to script the joining of a workstation to a domain perhaps out of an image restore, you can do this easily by using powershell as well as a batch…