Search
Tag Cloud
- activesync
- annoyances
- apple
- batavia
- beach
- Biography
- Books
- cars
- christmas
- coldfusion
- Company
- diy
- Electronics
- Event
- Fiction
- Food
- Game
- General Christian
- halloween
- ipad
- iphone
- isaac
- kids
- lucy
- MoviesAndTV
- oldblog
- osx
- OutdoorGear
- Person
- Place
- programming
- quantifiedself
- Restaurant
- sarah
- Software
- Store
- symetri
- sysadmin
- technology
- Theology
- trone
- webdev
- Website
- windows
Archives
Tag Archives: sysadmin
Simple is lovely
Needed to quickly get a new shortcut out to a group of terminal server users on their desktops and start menus. Nothing particularly complicated about the script, but it did the job: for /f “tokens=*” %a in (‘dir C:\Docume~1\ /b … Continue reading
Deleting files in a text file (OSX)
Someone had a list of absolute paths of files they needed to delete. I sent them this tiny script to help them out: sed ‘s/\ /\\ /g’ filelist.txt | xargs rm Explanation: Take filelist.txt, replace all the spaces with backslash … Continue reading
A really good one.
GEEK ALERT:I learned a lot about Windows Time Service and related items last night. For all the domain controllers and computers to talk nicely to each other on a Windows network (and other networks relying on Kerberos/most modern authentication mechanisms), … Continue reading