Rather than having a username and password in plain text you might want to put the password into a file in an unreadable format. This has some pretty clear benefit that you are not fully exposing the password. From time to time of course you want to test with a password in plain text but in production that practice should be avoided if possible. Clearly if someone “bad” acquires the file they could essentially have the password username (if they got this from your automation script) combination. A sysadmin could minimize that threat by limiting who has access to the servers and use file permissions to protect the password text file.
Category Archives: Uncategorized
Add IE Trusted Sites without AD GPO
Building off of the post from yesterday about checking Trusted Sites in IE using PowerShell this is how to add a Trusted Site on a single computer without rolling it out domain wide with a GPO. This is handy in situations where a site might need to be trusted temporarily or only on one computer and pushing it out over a Group Policy Object is more work then needed. Continue reading
IP info in an easy .bat file
Get the info you need from a user quickly with a bat file like this one.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
@color F0 @echo IP INFORMATION @echo Help Desk x8888 @ipconfig /all | find "IPv4" @ipconfig /all | find "Host Name" @ipconfig /all | find "DNS Servers" @ipconfig /all | find "Default Gateway" @ipconfig /all | find "DHCP Server" @ipconfig /all | find "Lease Obtained" @ipconfig /all | find "Lease Expires" @echo MAC Address @getmac /FO LIST | find "Physical Address" @echo Pinging Self @ping -n 1 127.0.0.1 | find "TTL" @echo Pinging Core Network @REM put your gateway below @ping -n 1 10.1.1.190 | find "TTL" @echo Pinging Internet @ping -n 1 8.8.8.8 | find "TTL" @echo Domain and Username @whoami @ver @pause |