Lets Automate It

from Josh Rickard

Mdt 2013 Setting Up Mdt 2013 With Adk for Windows 7 8 8 1

2018-08-07 Josh Rickard

Hello Everyone, in the following few weeks I will creating several new posts about setting MDT 2013 on Windows Server 2012 R2 to enable you to image your Dell OptiPlex & Lattitude machines. This will be similar to my MDT 2012 Update 1 Guide but a bit different as well. I hope you enjoy!

To Start things off, you need to download the following pieces of software:

MDT 2013 ADK for Windows 8.1 Windows 8.1 ISO/DVD Windows 7 ISO/DVD WinPE 5.0 Driver CAB - From Dell

Continue reading

Script Adding Exchange Resource Accounts to Your Outlook

2018-08-07 Josh Rickard

I work for a large public University and we have many Resource Accounts.  We needed a way to move from Public Folders but we wanted it to be seemless as possible.  To do this, I created this VBS script that allows anyone to add Resource Accounts to their Outlook 2013/2010 calendar as a shared calendar.  The user in question will have to run this script while Outlook is open and it will pull the Resource Account (add the Resource Account name in the RESOURCEACCOUNTNAME variable below) from the GAL and add it to the users calendar.  I hope this helps anyone interested in doing the same.

Continue reading

Script Removing Proxy From Firefox User Prefs Js

2018-08-07 Josh Rickard

So, I was tasked with removing proxy settings from Firefox because of Webroot Desktop Proxy.  Removing them from the %Programfiles% directory was easy, the hard part was the user prefs.js.  Anyways, here’s a little script I created to remove Proxy settings and set them to No Proxy.

cd /D “%APPDATA%\Mozilla\Firefox\Profiles" cd *.default set ffile=%cd% type “%ffile%\prefs.js” | findstr /v “user_pref(“network.proxy.type”, 2);">"%ffile%\prefs_.js” type “%ffile%\prefs.js” | findstr /v “user_pref(“network.proxy.type”, 0);">"%ffile%\prefs_.js” ren “prefs.js” “prefs_.js” del “%ffile%\prefs.js” ren “prefs_.js” “prefs.js” del “%ffile%\prefs_.js” echo user_pref(“network.proxy.type”, 0);>>"%ffile%\prefs.js” set ffile= cd %windir%

Powershell Updating Local Admin Passwords Securely 3 of 3

2018-08-07 Josh Rickard

Below is an example of how to remotely (using PowerShell) update and change the Local Administrator password securely.  This is not my script, I received this script along with many others from the SANS SEC 505 course.  I have not altered it in any way.

Updating the Passwords of the Local Administrator on remote mahcines (You must have a Certificate either from your CA or another Certificate Authority):

This script will remove older local administrator passwords that you have created with the first part (1 of 3) which is decrypted by your Private Key Certificate in (2 of 3).

Continue reading
Older posts Newer posts