You may have a situation where you need to sign a file which may be an a. .exe b. .cab c. .cat d. .ocx e. .dll f. .stl Using the CryptoAPI “signtool.exe”, the files can be digitally signed. Digitally signing…
Windows Script: Data Backup
@ECHO OFF ECHO. MD c:\temp\vSalm.backup SET /P targetdate=What is the target date (e.g. mm-dd-yyyy): ECHO. SET /P BACKUPMODE=Full Backup or Partial Backup (F/P): ECHO. IF /I %BACKUPMODE%==F (GOTO FULLBACKUP) ELSE (IF /I %BACKUPMODE%==P (GOTO PARTIALBACKUP) ELSE (GOTO INVALID)) ECHO. :FULLBACKUP…
Windows Script: Shutdown or Restart
@ECHO OFF ECHO. SET /P SHUTDOWNMODE=Shutdown or Restart (S/R): ECHO. IF /I %SHUTDOWNMODE%==S (GOTO SHUTDOWN) ELSE (IF /I %SHUTDOWNMODE%==R (GOTO RESTART) ELSE (GOTO INVALID)) ECHO. :SHUTDOWN REM PAUSE ECHO Shutdown in progress …. Shutdown -f -s -m \\127.0.0.1 -t 03…
You Cannot Connect to the Internet After You Connect to a VPN Server
To resolve this issue, configure the client computers to use the default gateway setting on the local network for Internet traffic and a static route on the remote network for VPN-based traffic. NB> Workaround: To work around this issue, create…
Exchange Server 2010 Room Mailboxes Step by Step Guide
Exchange Server 2010 has several different types of mailboxes that can be created. In this tutorial we’ll explore the purpose of a Room Mailbox in Exchange Server 2010, how to create a Room Mailbox, and look at different ways to…
Office 2010/2013: How to Reset License
Windows 7의 경우, sysprep을 통해 SID를 변경하더라도, 이미 설치된 Office의 라이선스는 리셋되지 않는다. KMS 인증을 사용하는 경우, sysprep된 가상 머신을 배포해서 사용할 때, Office KMS 카운트가 올라가지 않는 증상이 발생한다. 이 경우 Office 라이선스를 리셋해주는 것이 필요하다. Office 2013은 아래와…
Multiple NICs of File Server on Windows Server 2008
IMPORTANT NOTE: This blog post was created before the release of Windows Server 2012, which introduced SMB 3.0 and the new SMB Multichannel feature and significantly improved SMB’s ability to use multiple network interfaces. You can read more about SMB…
Exchange Server Diagrams
Well Known TCP/UDP Ports: https://technet.microsoft.com/en-us/library/cc959828.aspx | http://www.networksorcery.com/enp/protocol/ip/ports00000.htm
Windows Server Logon Script
‘******************************************************* ‘* VBScript to map a network drive to a UNC Path. ‘* David (BM) Kim: david.bmkim@inspint.com.au ‘* Version 1.0 ‘* Reference: http://www.computerperformance.co.uk/Logon/logon_scripts.htm ‘* sample: C:\Windows\SYSVOL\domain\Policies\{D635F125-F097-41D8-981E-044B1849E864}\User\Scripts\Logon ‘* Date: 2 May 2013 * ‘******************************************************* Option Explicit On Error Resume Next Const IT_GROUP…
