Sie befinden sich aktuell in den Techblog - Tim Wanierke Blog-Archiven für den folgenden Tag 5.2.2009.
- Betriebsysteme (21)
- Hardware (12)
- Home (1)
- HOWTO / Guides (9)
- Microsoft (81)
- Performance Analyse (3)
- Programmieren (2)
- Projektmanagement (2)
- Tools (34)
- VMWare (10)
- Windows 2000 (11)
- Windows 2003 (14)
- Windows 2008 (30)
- Windows 7 (14)
- 25.8.2011: Authoritative Restore of Active Directory Objects
- 17.8.2011: User State Migration Tool GUI - MUST
- 12.8.2011: Auflisten von Änderungen eines Active Directory Objektes mittels "repadmin"
- 29.6.2011: PKI , Kerberos and Smart Cards
- 22.6.2011: Active Directory Domain member: Maximum machine account password age
- 16.6.2011: Export and import GPO from one domain to another
- 26.5.2011: Unable To Reconnect To Terminal Server In Application Mode
- 11.5.2011: How to use the EventCombMT utility to search event logs
- 5.5.2011: Phantoms, tombstones and the infrastructure master - Event ID 1419 generated on a domain controller
- 4.5.2011: Forest Trust - Name Suffix Routing
- August 2011
- Juni 2011
- Mai 2011
- März 2011
- Februar 2011
- Januar 2011
- Dezember 2010
- November 2010
- Oktober 2010
- September 2010
- August 2010
- Juli 2010
- Juni 2010
- Mai 2010
- April 2010
- März 2010
- Februar 2010
- Januar 2010
- Dezember 2009
- November 2009
- Oktober 2009
- September 2009
- August 2009
- Juli 2009
- Juni 2009
- Mai 2009
- April 2009
- März 2009
- Februar 2009
- Januar 2009
Archive für 5.2.2009
Turn off SNP ( Scalable Networking Pack ) features for Windows 2003 computers
5.2.2009 von Tim Wanierke.
Link : http://support.microsoft.com/kb/948496
Reasons to turn of SNP:
- When you try to connect to the server by using a VPN connection,
you receive the following error message:
Error 800: Unable to establish connection
- You cannot create a Remote Desktop Protocol (RDP) connection to the server.
- You cannot connect to shares on the server from a computer on the local area network.
- You cannot join a client computer to the domain.
- You cannot connect to the Exchange server from a computer that is
running Microsoft Outlook.
- Inactive Outlook connections to the Exchange server may not be cleaned up.
- You experience slow network performance.
- You may experience slow network performance when you communicate
with a Windows Vista-based computer.
- You cannot create an outgoing FTP connection from the server.
- The Dynamic Host Configuration Protocol (DHCP) server service crashes.
- You experience slow performance when you log on to the domain.
- Network Address Translation (NAT) clients that are located behind
Windows Small Business Server 2003 or Internet Security and Acceleration (ISA)
Server experience intermittent connection failures.
- You experience intermittent RPC communications failures.
- The server stops responding.
- The server runs low on nonpaged pool memory
Solution:
Method 1: Manually disable Receive Side Scaling and TCP Offload in the network adapter driver
To manually disable RSS and TCP Offload in the network adapter driver, follow these steps:
1. Click Start, click Run, type ncpa.cpl, and then click OK.
2. Right-click a network adapter object, and then click Properties.
3. Click Configure, and then click the Advanced tab.
4. In the Property list, click Receive Side Scaling, click Disable in the Value list, and then click OK.
5. In the Property list, click TCP/IP Offload, click Disable in the Value list, and then click OK.
6. Repeat steps 2 through 5 for each network adapter object.
Method 2: Update the network adapter drivers
To determine whether an updated network adapter driver is available, contact the network adapter manufacturer or the original equipment manager (OEM) for the computer. The driver must meet Network Driver Interface Specification (NDIS) 5.2 or a later version of this specification.
Method 3: Manually disable RSS and TCP Offload in the registry
To manually disable RSS and TCP Offload yourself, follow these steps:
1. Click Start, click Run, type regedit, and then click OK.
2. Locate the following registry subkey:
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Tcpip\Parameters
3. Right-click EnableTCPChimney, and then click Modify.
4. In the Value data box, type 0, and then click OK.
5. Right-click EnableRSS, and then click Modify.
6. In the Value data box, type 0, and then click OK.
7. Right-click EnableTCPA, and then click Modify.
8. In the Value data box, type 0, and then click OK.
9. Exit Registry Editor, and then restart the computer.
Geschrieben in Microsoft | Drucken | 1 Kommentar »
Hide password input in batch file
5.2.2009 von Tim Wanierke.
1. Type the text below into a new textfile named “INPUT.TXT”. The blank line and the carriage return are importand.
———————————————-
A
MOV AH,08
INT 21
MOV DL,AL
MOV AH,02
INT 21
CMP DL,0D
JNZ 0100
MOV AH,4C
INT 21
RCX
18
NINPUT.COM
W
Q
———————————————-
2. Open a new DOS Box. Then enter at prompt ”debug < input.txt”. This creates the Input.com file.
Then use the batch file below as a test.
@echo off
echo Geben Sie Ihr Password ein und druecken Sie Enter…:
input > %TEMP%\pw.txt
set /p mypassword= < %TEMP%\pw.txt
del %TEMP%\pw.txt
Geschrieben in Microsoft | Drucken | Keine Kommentare »