Everything posted by NIM
-
No Unreal 2007 till 2007
Since I'm an UT2004 Fanatic all I can say is that I adore Unreal, especially the ONS mode... I'm curently playing for one European clan (D2F) and practically playing every night for fun with my onslaught buddies Unreal 2007 will be made on Unreal3 engine and will provide excellent graphic which will result in high system requirements.. Think I'll need a new rig for this game.. Check this pic of Unreal 2007
-
No Unreal 2007 till 2007
Midway says the PC edition of its much-awaited shooter won't ship until "first half" of next year; PS3 version still TBA, more Xbox 360 hints dropped. Link
-
Windows XP SP3
When I first read the title of ur post I thought, omg wtf As far as I remember I read somewhere that it could be out along with Vista..but that's impossible IMHO I think that Vista is far more important that XP SP3
-
Hey Everyone
Well, to be honest I know, 'cause MSFN founder is my friend It wasn't easy, the most important thing is to have several good posters who'd be active and would be a big help and support for all new forum users.
-
Hey Everyone
Nice post cygnus.. First of all, meaning of this forum is just as you said to help each other. It's very hard to enchain people to a new forum when there isn't much posts which could be useful to others. That's way I started with tutorials, tips and tricks threads which could help us draw some attention. In time I will put google ads and hope that with those funds I'll be able to cover site and board expenses. Until then, I have a lot of posting to do
-
Forum Skin
I have changed the whole forum skin instead, takes less time and it looks better
-
Static IP to DHCP via VB script.
'Changes Windows NT clients from using static IP address's to use DHCP. Could be called from the logon script. Combined with the use of the SU utility this could be added to a logon script to perform a hands off migration. 'All variables declared Option Explicit Dim oWSHShell Dim sNIC, sMan Dim iCount Set oWSHShell = Wscript.CreateObject("Wscript.Shell") ' Set the DCHP service to autostart oWSHShell.RegWrite "HKLM\SYSTEM\CurrentControlSet\Services\DHCP\Start", 2 ' Get Network card On Error Resume Next iCount = 1 Do sNIC = oWSHShell.RegRead("HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\NetworkCards\" & iCount & "\ServiceName") sMan = oWSHShell.RegRead("HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\NetworkCards\" & iCount & "\Manufacturer") ' Skip the Async and NDIS services If sMan <> "Microsoft" And Err.Number = 0 Then Call SetNIC End If iCount = iCount + 1 Loop Until Err.Number <> 0 ' Clear the error Err.Clear ' End of Script Sub SetNIC Dim iTest ' Set the NIC service to use DHCP sNIC = "HKLM\SYSTEM\CurrentControlSet\Services\" & sNIC &"\Parameters\TCPIP\" iTest = oWSHShell.RegRead(sNIC & "EnableDHCP") If iTest = 0 Then oWSHShell.RegWrite sNIC & "EnableDHCP", 1, "REG_DWORD" oWSHShell.RegWrite sNIC & "IPAddress", "0.0.0.0", "REG_MULTI_SZ" oWSHShell.RegWrite sNIC & "SubnetMask", "0.0.0.0", "REG_MULTI_SZ" End If End Sub
-
Delete Share via VB script.
DomainName = InputBox("Enter domain name") ServerName = InputBox("Enter server name") ShareName = InputBox("Enter share name to be deleted") Set cont = GetObject("WinNT://"& DomainName &"/"& ServerName &"/LanmanServer,FileService") cont.Delete "FileShare", ""& ShareName &""
-
Delete Old Files via VB script.
Dim oFSO, oFolder, oFiles, oFile Set oFSO = CreateObject("Scripting.FileSystemObject") Set oFolder = oFSO.GetFolder("C:\TEST") Set oFiles = oFolder.Files for each oFile in oFiles if oFile.DateLastModified > DateAdd("d", -14, Now()) then if MsgBox("Delete " & oFile.Path, vbYesNo) = vbYes then ' Omit 'True' in the next line if ReadOnly should be respected oFile.Delete True end if end if next
-
Decimal to Hex via VB script.
decNum = Inputbox("Enter the Decimal Value you want to convert:") hexNum = hex(decNum) MsgBox "Decimal Value You Entered: " & decNum & vbCRLF & "Hex Value Conversion: " & hexNum
-
Create User Account via VB script.
Dim Container Dim ContainerName Dim User Dim NewUser ContainerName = InputBox("Enter the Domain Name:") Newuser = InputBox("Enter the new user name:") Set Container = GetObject("WinNT://" & ContainerName) Set User = Container.Create("User", NewUser) User.SetInfo
-
Create Share via VB script.
DomainName = InputBox("Enter domain name") ServerName = InputBox("Enter server name") ShareName = InputBox("Enter share name to be created") PathName = InputBox("Enter the full path of the new share") Set cont = GetObject("WinNT://"& DomainName &"/"& ServerName &"/LanmanServer,FileService") Set fs = cont.Create("FileShare", ""& ShareName &"") fs.Path = ""& PathName &"" fs.MaxUserCount = -1 fs.SetInfo
-
Create Text File via VB script.
If err.number = 0 Then Set FSO = CreateObject("Scripting.FileSystemObject") FSO.CreateTextFile "c:\MSO2000.TXT" Else End if
-
Copying files via VB script
Set fso = CreateObject("Scripting.FileSystemObject") fso.copyFile "c:\mytext.txt" , "c:\temp\"
-
Change User Password via VB Script
Dim UserName Dim UserDomain UserDomain = InputBox("Enter the user's login domain name") UserName = InputBox("Enter the user's login name") Set User = GetObject("WinNT://"& UserDomain &"/"& UserName &"",user) Dim NewPassword NewPassword = InputBox("Enter new password") Call User.SetPassword(NewPassword) If err.number = 0 Then Wscript.Echo "The password change was successful." Else Wscript.Echo "The password change failed!" End if
-
Serial Number via VB script.
Set SNSet = GetObject("winmgmts:").InstancesOf ("Win32_BIOS") for each SN in SNSet MsgBox "The serial number for this PC is: " & SN.SerialNumber Next
-
BIOS Information via VB Script
Set SNSet = GetObject("winmgmts:").InstancesOf ("Win32_BIOS") for each SN in SNSet Wscript.Echo "BIOS Manufacturer of this computer is: " & SN.Manufacturer Wscript.Echo "BIOS Version of this computer is: " & SN.Version Wscript.Echo "BIOS Version date of this computer is: " & SN.ReleaseDate Wscript.Echo "SMBIOS Version of this computer is: " & SN.SMBIOSBIOSVersion Next
-
Add Network Printer via VB Script
Dim p p = InputBox("Enter the network path to the printer you want to install:", "Add Printer", "\\Server\PrinterName") If p <> "" Then Dim cmd cmd = "rundll32 printui,PrintUIEntry /in /n" & p WScript.CreateObject("WScript.Shell").Run cmd End If
-
Account Unlock via VB Script
UserName = InputBox("Enter the user's login name that you want to unlock:") DomainName = InputBox("Enter the domain name in which the user account exists:") Set UserObj = GetObject("WinNT://"& DomainName &"/"& UserName &"") If UserObj.IsAccountLocked = -1 then UserObj.IsAccountLocked = 0 UserObj.SetInfo If err.number = 0 Then Wscript.Echo "The Account Unlock Failed. Check that the account is, in fact, locked-out." Else Wscript.Echo "The Account Unlock was Successful" End if
-
Change IP Configuration via VB Script
Option Explicit Dim NetworkAdapter, AdapterConfiguration 'Objects Dim IPAddress, SubnetMask, Gateway, DNS 'String Arrays Dim RetVal 'Integers For Each NetworkAdapter In GetObject("winmgmts:").InstancesOf("Win32_NetworkAdapter") If NetworkAdapter.AdapterType = "Ethernet 802.3" Then For Each AdapterConfiguration In GetObject("winmgmts:").InstancesOf("Win32_NetworkAdapterConfiguration") If UCase(AdapterConfiguration.ServiceName) = UCase(NetworkAdapter.ServiceName) Then IPAddress = Array("192.168.0.10") SubnetMask = Array("255.255.255.0") Gateway = Array("192.168.0.1") DNS = Array("35.8.2.41") RetVal = AdapterConfiguration.EnableStatic(IPAddress, SubnetMask) If Not RetVal = 0 Then WScript.Echo "Failure assigning IP/Subnetmask." End If RetVal = AdapterConfiguration.SetGateways(Gateway) If Not RetVal = 0 Then WScript.Echo "Failure assigning Gateway." End If RetVal = AdapterConfiguration.SetDnsServerSearchOrder(DNS) If Not RetVal = 0 Then WScript.Echo "Failure assinging DNS search order." End If End If Next End If Next
-
[How-to]Administrative rights under a limited user account.
This guide will show how to launch an application with Administrative rights under a limited user account. This is very useful for people who want to use Limited User accounts but have some apps/games that do not work native in this environment. All you need is AutoIT (free) and the following code. Create a txt file and put this (make changes as necessary) inside: CODE ; Set the RunAs parameters to use local adminstrator account ; Run program as admin ; Reset user's permissions RunAsSet("username", "computername", "password") RunWait("C:\Program Files\Path\To.exe") RunAsSet() rename this file runas.au3 Now were just going to compile this as an exe so others cannot get the administrator password. Run Aut2Exe For Source choose the au3 file you just created. For Destiniation choose a name for the exe to be created. (Optional) Choose an Icon for the exe. Uncheck decompilation Finish by hitting Convert to create the exe! Easy Right!? The Secondary Logon service must be running! You can always manually run/(un)install programs while a Limited User by right clicking on a file and selecting runas. The administrator account needs to have a password for this to work. You can extract the icon from any file using XN Resource Editor (free/standalone). [TWEAK] Hide the Administrator Account on the XP Logon Screen. You can logon as Administrator by switching to the classic logon by hitting Ctrl+Alt+Del twice at the xp logon screen. CODE Windows Registry Editor Version 5.00[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon\SpecialAccounts\UserList]"Administrator"=dword:00000000
-
3Com Firewall PCI Card with 10/100 LAN - firewall
Full specifications for 3Com Firewall PCI Card with 10/100 LAN - firewall Manufacturer: 3Com Corp. Part number: 3CRFW200B NetworkingData link protocol Ethernet, Fast Ethernet Data transfer rate 100 Mbps Features DHCP support, BOOTP support Networking standards IEEE 802.2, IEEE 802.3, IEEE 802.1Q, IEEE 802.3U GeneralDepth 5.3 in Width 2.1 in Software / System RequirementsOperating system Linux 2.4, Microsoft Windows 98, Microsoft Windows XP, Microsoft Windows 2000, Red Hat Linux 7.3 - 9.0, Microsoft Windows Server 2003, Microsoft Windows 98 Second Edition, Microsoft Windows NT 4.0 SP3 or later
- Wow VS GW
-
THG Tuning Test: Core 2 Extreme vs. Athlon 64 FX-62
As expected, Intel is dominating I wonder what answer AMD will have to offer, it seems that AMD has cut down it's processor prices and probably already working on the processor which would put Intel on it's knees :lol:
-
[How-To] Digital VU Meter
Pictures are irrelevant here mate, great tut !!