Tuesday, October 19, 2010

A potentially dangerous Request.Form value was detected from the client

In testing RDWeb access to the Windows Remote Desktop Services system, I had a user who could not load the page with the desktop pools icon.

I found the following message on the web server:
A potentially dangerous Request.Form value was detected from the client


Solution:
SOLUTION
1. Explore to the directory that WebAdmin is installed.
2. Open web.config in NotePad.
3. Add the line: ' inside the ' section as shown below.

[system.web]
'[pages validateRequest="false" /]'


4. Save the file and exit.
5. Try to access WebAdmin again.



Wednesday, May 19, 2010

SMS Collections based on Organizational Units in AD

I want to create SMS Collections based on Organizational Units. However, when I go to "System Resource", our SMS 2003 site database does not have data for the "System Group Name", "System Container Name", and "System OU Name."

Discovered that the [Active directory system GROUP] discovery populates these values. Turned in on today and "bam"!, there they were!

Windows 2003 Server Time Synchronization

Several of the client Windows XP machines are out of synch in regards to the system time. Even the windows servers were out of synch with themselves. To resolve the problem, I needed to use w32tm utility to set the time, not the "net time" command.


A note from http://social.technet.microsoft.com/Forums/en-US/winservergen/thread/db179f69-2a9a-40d9-88de-2b370f7dc863 was helpful, stating that " the “Net Time” command is supposed to work for Windows 2000 based machines. It uses the protocol called Simple Network Time Protocol or SNTP which means it’s a “simple” version of NTP and lacks some of the more complex algorithms which provide more accurate and stable time for NTP clients. For Windows Server 2003 / Windows XP or above machines, they use NTP instead of SNTP. "


The following two commands actually synched the time:

w32tm /config /syncfromflags:manual /manualpeerlist:"clock list"
w32tm /config /update

Tuesday, April 27, 2010

Modifying WIM image

I needed to change the background that is present when the Windows is starting. I could change it from within Windows, but not from the WIM image I created. It has to be simple!!!

Well, it was.....

The System Default Profile
When Windows NT is running on a computer that no user is logged on to, a dialog box appears, prompting you to press CTRL+ALT+DEL to log on. This dialog box and other aspects of the Windows NT environment at this point, such as the screen's background color and its use of wallpaper and screen savers, are controlled by the system default profile. The settings for this profile are stored in System32\config\default.

Friday, April 9, 2010

Group policies not updating on XP clients

The Active Directory servers are outside of the firewall. All the systems that are behind the firewall are not updating with AD group policies. They are giving the following error:

Event Type: Error
Event Source: Userenv
Event ID: 1054

Description:
Windows cannot obtain the domain controller name for your computer network. (An unexpected network error occurred. ). Group Policy processing aborted.

ContentAvailable ignoring update with no DPs for content request

I received this message "ContentAvailable ignoring update with no DPs for content request" from SMS 2003 client systems that were behind a firewall, using private addresses, such as 172.35.0.0. These systems were on the public side, but was changed a few months ago.

Simply solved the problem by putting the private subnet in the boundry for our SMS Site server. Everything is fine now.

Wednesday, April 7, 2010

Windows Media Server - server-side playlists

I want to have videos playing full shows and clips when user connects, playing at different times throughout the day.

Ran accross the usage of "server-side playlists". Will see how it is done and post here.