Category: Servers

Granular password policies in 2008 Active Directory
article #84, updated 5827 days ago

Multiple password policies, in Active Directory under Server 2008. Check it out:

http://www.windowsecurity.com/articles/Configuring-Granular-Password-Settings-Windows-Server-2008-Part-1.html

Categories:      

==============

Remote Web Workplace, excluding PCs
article #72, updated 5937 days ago

Add this registry key, to remove specific workstations from RWW access.

HKLM\SOFTWARE\Microsoft\SmallBusinessServer\RemoteUserPortal\ExcludeList

It needs to be a string, a la:

pc1,pc2,desktop7,server8

Categories:      

==============

Migrate user profiles
article #47, updated 6156 days ago

The Microsoft User State Migration Tool is recommended:

http://www.microsoft.com/downloads/details.aspx?FamilyID=799ab28c-691b-4b36-b7ad-6c604be4c595&displaylang=en

Categories:      

==============

Reset MSDE (Microsoft SQL Desktop) password
article #25, updated 6339 days ago

MSDE has its own passwording system. Instead of “Administrator”, the first username is “sa”. To reset it, log in as local admin, and use this command line:

osql -S COMPUTERNAME\SERVERNAME -d databasename -Q "sp_password NULL, 'newpassword', 'sa'"

COMPUTERNAME is the hostname of the local system, i.e., the contents of COMPUTERNAME in batch.

SERVERNAME is whatever the server name is. Some MSDE installations appear to not need the -S item at all. If you don’t have SERVERNAME, try the command without the -S option, and see if it works. If it doesn’t, you’ll have to investigate your MSDE application to find out what SERVERNAME it is using.

databasename is the database name of the application.

newpassword is the new password you want to use for username ‘sa’.

This procedure may work with the fully-fledged Microsoft SQL Server, but has not been confirmed with it.

Categories: