Sign in
Aaron Czechowski, MCS
Options
About
Email Blog Author
RSS for posts
Atom
RSS for comments
OK
Search Blogs
Tags
CMD
ConfigMgr
DCM
IIS
MDT
OpsMgr
PowerShell
Security
SQL
USMT
VBScript
Vista
Windows
WinPE
WSUS
Archive
Archives
June 2012
(1)
February 2012
(1)
January 2012
(5)
December 2011
(5)
October 2011
(2)
August 2011
(1)
June 2011
(2)
March 2011
(3)
January 2011
(1)
September 2010
(1)
July 2010
(1)
May 2010
(2)
April 2010
(3)
November 2009
(1)
June 2009
(1)
April 2009
(1)
February 2009
(3)
November 2008
(2)
August 2008
(2)
May 2008
(2)
March 2008
(3)
February 2008
(2)
January 2008
(2)
December 2007
(2)
November 2007
(3)
October 2007
(1)
September 2007
(4)
July 2007
(3)
May 2007
(2)
April 2007
(1)
March 2007
(7)
TechNet Blogs
>
Aaron Czechowski, MCS
Posts
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
Aaron Czechowski, MCS
Secondary site server attempting NTLM anonymous logon
Posted
over 3 years ago
by
Aaron Czechowski [Microsoft]
0
Comments
I recently came across a problem that drove me crazy for several hours. I've installed secondary site servers many times and have the setup down pat to work with my usual secure configuration. The secondary site server installed ok, but then the mpcontrol...
Aaron Czechowski, MCS
TestDBUpgrade on a Named Instance
Posted
over 3 years ago
by
Aaron Czechowski [Microsoft]
2
Comments
In a scenario where a hardened SQL named instance (e.g., SQLI1) is used to perform the database (e.g., SMS_P01) upgrade test for a service pack the ConfigMgrSetup.log may contain the following errors: The command line options are /TESTDBUPGRADE...
Aaron Czechowski, MCS
Explicit rights for Preinst
Posted
over 3 years ago
by
Aaron Czechowski [Microsoft]
0
Comments
I recently had to manually remove a secondary site (S01) from a ConfigMgr 2007 SP1 hierarchy. It deleted ok from the parent site (P01), but since that doesn't replicate up the hierarchy, I had to go to the Hierarchy Maintenance Tool (Preinst.exe) on the...
Aaron Czechowski, MCS
Check-WsusContentHash.ps1
Posted
over 4 years ago
by
Aaron Czechowski [Microsoft]
1
Comments
I wrote the attached script to recursively parse a WsusContent directory and compare the file name to the SHA1 hash of the file. This performs a basic verification that the content is valid. WSUS does this by itself, but when moving the content across...
Aaron Czechowski, MCS
FQDN in OpsMgr DNS 2008 Zone Resolution Monitor
Posted
over 4 years ago
by
Aaron Czechowski [Microsoft]
0
Comments
I've made the leap into the wonderful world of System Center Operations Manager, and wanted to post this obscure issue with the DNS 2008 Zone Resolution Monitor in the DNS Server MP. In certain complex DNS environments, queries may need to be in the...
Aaron Czechowski, MCS
Debug programs right needed to uninstall ConfigMgr Console
Posted
over 4 years ago
by
Aaron Czechowski [Microsoft]
0
Comments
I recently discovered an interesting issue when trying to uninstall the ConfigMgr Console from a Windows Server 2003 system to which the SSLF member server baseline policy is applied. When running through setup to uninstall the console, all of the components...
Aaron Czechowski, MCS
MMS 2009 Session
Posted
over 4 years ago
by
Aaron Czechowski [Microsoft]
0
Comments
I'm happy to announce that my session was accepted for the Microsoft Management Summit 2009 . SY22 Deploying Configuration Manager 2007 in a High Security Environment Speaker(s): Aaron Czechowski Track(s): Security Management, Systems...
Aaron Czechowski, MCS
Notepad line wrap columns
Posted
over 4 years ago
by
Aaron Czechowski [Microsoft]
0
Comments
I love Notepad. I use it daily. But what really bugs me is when I go to print a text file and the lines wrap on the paper. So I've noted the following column numbers for the various font sizes to determine where the line will wrap. It's assuming Lucida...
Aaron Czechowski, MCS
PowerShell to change ConfigMgr Client Cache size
Posted
over 4 years ago
by
Aaron Czechowski [Microsoft]
0
Comments
Don Hite has a VBS Script To Change A Remote SMS Clients Cache Size , but I wanted to do it with PowerShell: $Cache = Get-WmiObject -namespace root\ccm\SoftMgmtAgent -class CacheConfig $Cache.size = 10240 $Cache.InUse = "True" $Cache.Put() Restart-Service...
Aaron Czechowski, MCS
ConfigMgr Software Updates on an Isolated Network
Posted
over 5 years ago
by
Aaron Czechowski [Microsoft]
1
Comments
The Windows Server Update Services (WSUS) 3 Deployment Guide documents a process by which update metadata and update content can be transferred from one server to another isolated server. Since Configuration Manager 2007 relies upon WSUS for the software...
Aaron Czechowski, MCS
Customizing USMT Estimation with ConfigMgr Task Sequence
Posted
over 5 years ago
by
Aaron Czechowski [Microsoft]
1
Comments
One of the advantages of integrating MDT 2008 with ConfigMgr 2007 is a more dynamic state capture process. The MDT task "Determine Local or Remote" (ZTIUserState.wsf) gives you the ability to estimate the amount of space required for the state store,...
Aaron Czechowski, MCS
Mac: The Easiest Target
Posted
over 5 years ago
by
Aaron Czechowski [Microsoft]
0
Comments
Several good articles at InfoWorld about CanSecWest security conference's PWN 2 OWN hacking contest back in March. A few snippets that I especially enjoyed: Miller said that he chose to hack the Mac because he thought it would be easiest target...
Aaron Czechowski, MCS
Windows 'Mojave'
Posted
over 5 years ago
by
Aaron Czechowski [Microsoft]
0
Comments
Check out the Mojave Experiment .
Aaron Czechowski, MCS
MMS 2008
Posted
over 5 years ago
by
Aaron Czechowski [Microsoft]
1
Comments
For the past week I've been out in Las Vegas for the Microsoft Management Summit (MMS) 2008 . Last year I did a better job of posting after each day, but I attribute a lot of that to the fact that a) I had just started my job at Microsoft the week before...
Aaron Czechowski, MCS
ConfigMgr 2007 and SCW
Posted
over 5 years ago
by
Aaron Czechowski [Microsoft]
0
Comments
The Security Configuration Wizard is new to Windows Server 2003 SP1 and provides very detailed ability to lockdown a server based on the roles, services and applications. With SMS 2003, the toolkit provided security templates that would allow SMS to function...
Aaron Czechowski, MCS
Bitsadmin script
Posted
over 5 years ago
by
Aaron Czechowski [Microsoft]
1
Comments
Attached is a script that I wrote to automate downloading a large file (e.g., ISO, WIM) by using BITS. There are variables at the start that need to be updated with the URL from which to download the file(s), and then the file name(s). If only one file...
Aaron Czechowski, MCS
How to generate a custom LGPO based on FDCC
Posted
over 5 years ago
by
Aaron Czechowski [Microsoft]
1
Comments
One of my customers requires additional security settings beyond the OMB-mandated Federal Desktop Core Configuration (FDCC) and I need to apply the settings as local policy during the MDT build process so that disconnected systems still get a baseline...
Aaron Czechowski, MCS
Script to set Windows Vista audit policy
Posted
over 5 years ago
by
Aaron Czechowski [Microsoft]
1
Comments
There's probably a sexier way to do it, but the attached script (rename to .cmd) can be used to set Windows Vista SP1 audit policy using auditpol. The current settings are based on the FDCC 2008 Q1 settings. It must be run elevated. I suggest using something...
Aaron Czechowski, MCS
About the gpt.ini version
Posted
over 5 years ago
by
Aaron Czechowski [Microsoft]
0
Comments
I recently did some research on the version variable in gpt.ini, what it means, and how to modify it. Unfortunately I found some discrepancies: http://technet2.microsoft.com/windowsserver/en/technologies/featured/gp/faq.mspx says to increase the value...
Aaron Czechowski, MCS
Windows 2008 "eats commercial Linux"
Posted
over 5 years ago
by
Aaron Czechowski [Microsoft]
0
Comments
Product review: Windows Server 2008 is the host with the most, and the perfect guest
Aaron Czechowski, MCS
Scripts for WSUS Import/Export
Posted
over 5 years ago
by
Aaron Czechowski [Microsoft]
2
Comments
The WSUS Deployment Guide has good general guidance on how to export/import content and metadata to a disconnected network. Here are some quick scripts that I whipped up to ease the process, as it's something that you'll probably want to do regularly...
Aaron Czechowski, MCS
Command Line Timestamp
Posted
over 5 years ago
by
Aaron Czechowski [Microsoft]
4
Comments
I often write little batch scripts, sometimes just as a way to save a lengthy command line. Frequently I also want to output the result to a file and give it a unique (and meaningful) filename. However the built-in %date% and %time% variables expand to...
Aaron Czechowski, MCS
Stay-At-Home Servers
Posted
over 6 years ago
by
Aaron Czechowski [Microsoft]
0
Comments
We have a funny marketing campaign for the new Windows Home Server. I especially like the book for kids, Mommy, Why is There a Server in the House?
Aaron Czechowski, MCS
A new look
Posted
over 6 years ago
by
Aaron Czechowski [Microsoft]
1
Comments
With quarterly training waiting to be done, I decided to procrastinate some more and tweak the ol' blog a bit. I've always been a big fan of simple, clean, sparse templates, so I'm trying out the Luxinterior - light_wide skin to see how it fits. I also...
Aaron Czechowski, MCS
IE7 search providers and ConfigMgr RP
Posted
over 6 years ago
by
Aaron Czechowski [Microsoft]
2
Comments
I was doing some research/testing on IE7 search providers today and thought up a neat trick for quicker access to some common ConfigMgr reports. See Microsoft Support Article ID 918238 for some of the technical details on IE7 search providers. We strongly...
Page 2 of 3 (70 items)
1
2
3