February
21

Open the start menu and type in:

C:\Users\%username%\AppData\Local\Microsoft\Outlook\RoamCache

The Auto Complete file starts with Stream_Autocomplete and ends in .dat

Finally rename your backup copy, to the one being used by your current Outlook. Then copy and overwrite.

 

Link

0
February
17

[nslookup[5].jpg]

0
February
5

HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon

DefaultUserName

DefaultPassword

DefaultDomainName

AutoAdminLogon = 1

0
December
18

GDS GratisDNS DDNS Service

Posted In: Diverse by admin

GDS GratisDNS DDNS Service is a service to use with Dynamic IP address and GratisDNS DDNS service. It sends your current ip address to GratisDNS every n interval. The service comes with a GUI for configuration.
You can configure 10 different domains/hosts and enable disable each separately.
This product is open source, and you may download the source code as well (below the application download). Its writen in Visual Studio 2010 (C#) .NET 4.0

Download

Homepage

0
December
1

wmic bios get serialnumber

wmic csproduct get name

0
November
26

Windows Server 2008 x64 R2 installs and seems to work fine on the SS4200.

 

One of the major issues is that a driver for the SIL3132 is not available for
2008 x64 R2.

 

I was able to get it running with the following procedure:

 

 

 

I downloaded driver version 1.0.15.6 from siliconimage.com under the drivers
listed for the SIL3132.  It is listed as the base driver for windows 7 x64

 

unpack the driver zip file and under AMD64 SI3132.inf was modified in the
following way:

 

%PCI\VEN_1095&DEV_3132.DeviceDesc%=SI_3132_XP,
PCI\VEN_1095&DEV_3132&SUBSYS_31328086

was added to the bottom of section: [SI_HDC.NTamd64]

 

HKR,SupportedSubsystemIDs, %SI3132_SUB_ID_DESC_INTEL%, 0×00010001,
0×31328086

was added to the bottom of section: [SupportedSubSystemIds_AddReg]

 

SI3132_SUB_ID_DESC_INTEL=”Silicon Image SiI 3132 SATALink Controller
(Intel)”

was added to section [Strings] right underneath the line:
SI3132_SUB_ID_DESC_DELL_3=”Silicon Image SiI 3132 SATALink Controller
(Dell_3)”

 

Finally, go to the mass storage controller with the yellow warning mark,
select update driver and navigate to the AMD64 directory.

 

The driver should be auto detected.  You will get a warning that the driver
is unsigned.

0
September
27

nltest /server:remote computer name /dsgetsite

0
August
25
0
August
22

Disable Delay ACK

Setting the Registry value TcpAckFrequency to 1
according to the technical information below will disable Delay ACK. This will
prevent the resend processing time from going to 5 frame/sec when a packet is
dropped. Using this method will not prevent packets from being dropped, but
even if they are dropped the resend processing delay will be improved, so that
time outs will not occur.

 

Subkey:
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Tcpip\Parameters\Interfaces\<Interface
GUID>
Entry: TcpAckFrequency
Value Type: REG_DWORD, number
Valid
Range: 0-255
Default: 2

0
August
19

So what we have is a Windows 2008 server running as an event log collector which gets the event log from one or several sources. To prepare, we need to do 3 steps:
1. On the collector, on an elevated command prompt, run the following command to start the Windows Event Collector Service, change it to Automatically (Delayed Start) and enable ForwardedEvents channel if it is disabled. See this for more info.

wecutil qc

2.On each source, we need to enable WinRM:

winrm quickconfig

3.By default, the collector server can’t simply get the event logs from the sources, so you have to add the collector computer account to the local Administrators (if the source is 2008 R2, Event Log Readers group is said to be enough if you’re not collecting Security log, but see Possible Problems later in this article for more info).

Link

0