Offtopic: Firefox 3 und Microsoft HTTPS Server

by fkollmann 7/22/2008 6:12:45 PM

Leider muss ich, seit dem ich Firefox 3 nutze, für alle Microsoft HTTPS Seiten eine Ausnahme definieren. Es gibt aber eine einfache Möglichkeit dies zu umgehen. Hierzu muss dem Microsoft Secure Server Authority Zertifikat vertraut werden bzw. den darauf basierenden Zertifikaten.

Hierzu einfach die unten genannte Datei in den Firefox 3 Optionen hinzufügen:

image

image

Das Vertrauen für dieses Zertifikat nur im Zusammenhang mit Webseiten aussprechen.

 

DOWNLOAD des Zertifikates

 

BTW: Nach dem Prinzip Security First; so kann die Datei selbst erzeugt werden:

  1. Zertifikat einsehen (wie als wenn man eine Ausnahme hinzufügen möchte)
  2. Zertifikat speichern (*.pem)
  3. Zertifikat in Windows importieren´
  4. Zertifikat öffnen und im Zertifizierungspfad die Microsoft Secure Server Authority öffnen
  5. Diese nun mit kompletten Zertifizierungs Pfad exportieren (*.p7b)
  6. Zertifikat in Windows wieder löschen

SharePoint 2007 Infrastrukturupdate verfügbar

by fkollmann 7/17/2008 10:58:00 AM

Die Updates betreffen folgende Produkte: SharePoint Server 2007, Windows SharePoint Services 3.0, Project Server 2007, Search Server 2008, Search Server 2008 Express und Project Professional 2007.

Die wichtigsten Änderungen sind:

  • Federated search
  • Kerberos authentication for the SSP infrastructure
  • Content database IDs and change logs

Die Installationsreihenfolge ist wie folgt:

Produkt /
Download?
Windows SharePoint Services 3.0 Search Server 2008 / 2008 Express Office SharePoint Server 2007 Project 2007 Professional (Server)
1. WSS 3.0 (x86, x64)* JA JA JA JA
2. MOSS 2007 (x86, x64)**   JA**** JA*** JA
3. Project 2007 (x86)       JA
(auf Clients!)

Es wird für alle Updates empfohlen vorher SP1 von WSS 3.0 bzw. MOSS 2007 installiert zu haben(!); also entweder direkt als SlipStream oder als Update (WSS, MOSS).

Bitte die Anleitungen beachten:

* Deploy Software Updates for Windows SharePoint Services 3.0
** Deploy Software Updates for Office SharePoint Server 2007
*** Install the Infrastructure Update for Microsoft Office Servers (Office SharePoint Server 2007)
**** Install the Infrastructure Update for Microsoft Office Servers (Search Server 2008)

Q: http://blogs.msdn.com/sharepoint/archive/2008/07/15/announcing-availability-of-infrastructure-updates.aspx
Q: http://weblogs.mysharepoint.de/mgreth/archive/2008/07/16/sharepoint-infrastructure-update-released.aspx

Windows Server 2008 Evaluation verlängern

by fkollmann 7/17/2008 10:28:00 AM

In letzter Zeit installiere ich neue Testumgebungen immer auf Windows Server 2008. Die Evaluierung kann insgesamt bis zu 240 Tagen dauern, dass ist für die meisten Sachen ausreichend. Allerdings muss hierzu nach 60 Tagen die Lizenz verlängert werden, wo sich nun die Frage stellt, wie das eigentlich geht.

Unter Windows Server 2008 x86 32bit geschieht dies mit:

c:\Windows\system32\slmgr -rearm

Und unter Windows Server 2088 x64 64bit geschieht dies mit:

c:\Windows\SysWOW64\slmgr -rearm

Wichtig ist, dies nicht zu früh zu tun, sondern wirklich abzuwarten, bis der Zeitraum (fast) abgelaufen ist. 

 

UPDATE: Artikel überarbeitet und x64 Unterstützung hinzugefügt.

Q: http://support.microsoft.com/kb/948472

Duplizierung von VMs (insb. in der Domäne)

by fkollmann 7/12/2008 6:07:00 PM

Häufig verwenden wir VMs zum Testen von neuen Produkten oder Testinstallationen. Dabei greift man der einfachhalthalber einfach auf eine fertige VM mit dem entsprechenden Betribessystem (als Trial) drauf zurück.

Leider handelt es hierbei um eine 100%ige Kopie. Das ist eiegntlich nicht schlimm, solange die VM für sich steht. Wenn diese aber Teil einer Domäne werden soll, wird es problematisch, da nämlich jede Installation ihren eigenen Security ID (SID) bekommt – so wie jeder Benutzer auch seinen eigenen hat.

Danach muss ggf. der Lizenzkey neu eingegeben und das Administrator Passwort neu festegelegt werden.

Daher muss für solche VMs ein neuer SID generiert werden. Hierzu gibt es zwei sehr einfache Wege:

 

Windows NT 4, Windows 2000, Windows XP und Windows Server 2003

NewSID (http://technet.microsoft.com/en-us/sysinternals/bb897418.aspx)

Windows Vista, Windows Server 2008

SysPrep (%WINDIR%\System32\Sysprep\Sysprep.exe; http://www.windowsvistaplace.com/sysprep-generalize-sid/windows-vista)

 

BTW: SysPrep gibt es auch für vorherige Versionen auf der Installations CD.

Renaming SharePoint instances

by fkollmann 7/4/2008 2:45:33 PM

Clinton Cherry beschreibt in seinem Blog, welche Schritte notwendig sind, um eine SharePoint Instanz umzubenennen. Allerdings ist das ganze natürlich unsupported:

Anyway, I thought I'd share the steps that I go through when duplicated a SharePoint image (and these are pretty much the same steps as renaming an image should this be what you needed to do.

  1. Go to the Sharepoint Central Administration > Operations > Services on Server  and stop "Windows SharePoint Services Search"
  2. Rename your server, however wait until step 5 until you restart it
  3. If you have MS SQL Server installed, you will also need to rename this. Go to "SQL Server Management Studio" and execute the following script
    EXEC sp_dropserver '<old_name>'
    GO
    EXEC sp_addserver '<new_name>', 'local'
  4. Update SharePoint references of the new name by calling the script:
    stsadm -o renameserver -oldservername <old server name> -newservername <new server name>
  5. Restart your PC
  6. If you try to open Central Administration after restarting PC it will try to open the site with the old server name. To recreate your Central Administration site for the new server name, call the following command using a port number for the new location of central admin:
    psconfig -cmd adminvs -provision -port 12345 -windowsauthprovider onlyusentlm
  7. Restart IIS and try to open your Central Admin site. It should successfully open your site with new server name
  8. Go to the "Application Management" and remove websites that reference the old machine name
  9. If you already have a search index drop this, and rebuild it

Now you should have a nicely renamed machine. You may find you need to create your site collections for SSP and My Sites, but this shouldn't be too hard.

Q: http://clintcherry.spaces.live.com/Blog/cns%21AEC0DCBC460E45B9%21647.entry