Welcome, Guest |
You have to register before you can post on our site.
|
Forum Statistics |
» Members: 5,207
» Latest member: Meup
» Forum threads: 4,029
» Forum posts: 16,404
Full Statistics
|
Online Users |
There are currently 412 online users. » 0 Member(s) | 411 Guest(s) Bing
|
Latest Threads |
How to install Archboot i...
Forum: Network Problems
Last Post: Meup
2025-05-13, 01:41 PM
» Replies: 0
» Views: 58
|
clear logs in smoothwall
Forum: Security and Firewalls
Last Post: amanda63
2024-03-10, 03:27 PM
» Replies: 8
» Views: 73,617
|
I cannot install RedHat 8...
Forum: Redhat
Last Post: hybrid
2023-11-11, 01:01 PM
» Replies: 1
» Views: 30,278
|
How things are done, usin...
Forum: Xorg Problems
Last Post: ross
2023-09-04, 09:03 AM
» Replies: 0
» Views: 1,639
|
Im back.....
Forum: Hello
Last Post: anyweb
2021-01-17, 11:36 AM
» Replies: 1
» Views: 5,043
|
add mp3 plugin to xmms in...
Forum: Fedora
Last Post: anyweb
2021-01-17, 11:30 AM
» Replies: 11
» Views: 40,608
|
Configuring VSFTPd Server
Forum: FTP Server
Last Post: Johnbaca
2020-10-14, 10:25 AM
» Replies: 32
» Views: 103,221
|
Wolf won't play sound!
Forum: Game Problems
Last Post: Guest
2020-10-03, 05:51 PM
» Replies: 1
» Views: 44,002
|
Using git + python
Forum: How Do I?
Last Post: Clueless puppy
2020-08-21, 04:37 PM
» Replies: 0
» Views: 34,466
|
what does your nick mean ...
Forum: Hello
Last Post: volt
2020-08-06, 03:25 PM
» Replies: 28
» Views: 40,108
|
|
|
Added more stuff |
Posted by: Digerati - 2003-12-18, 09:57 PM - Forum: General Chat
- Replies (2)
|
 |
I added all the helpful tips that I have created on my site to this site.
I hope there are no double posts anywere. If there is I'm sorry.
There is plenty of reading.. Have fun.
|
|
|
Make a Batch File that Beeps |
Posted by: Digerati - 2003-12-18, 09:55 PM - Forum: Tips and Tricks
- No Replies
|
 |
Note: this is specifically directed to the internal PC Speaker, not the normal multimedia soundcards and speakers on modern equipment.
You can write a DOS batch file that beeps by doing the following- at the DOS prompt type:
echo @echo (Alt-7)>beep.bat
but instead of typing the characters: "(Alt-7)", you hold down the Alt key and press 7 on the numeric keypad.
Don't use the 7 on the qwerty part of the keyboard, it has to be on the keypad, and Num Lock has to be on.
The effect of this is to output the characters:"@echo " followed by a non-ASCII character with a decimal value of 7, into a new file called beep.bat
You'll probably want to set the properties for the beep.bat DOS window to close on exit too.
|
|
|
Install Hotfixes Via Batch Files |
Posted by: Digerati - 2003-12-18, 09:54 PM - Forum: Tips and Tricks
- No Replies
|
 |
I wanted a simple way for me to install hotfixes with a script.
Some allow autoupdates to take care of this task but to me hotfixes are sometimes hotcrashes and if I am the one installed only the hotfixes I want then if they install bad I will know exactly what & why.
There is a utility from M$ called SUS that will download all patches and you
can tell it what to install on the clients and when.
It likes a lot of space though and the server I wanted to install it on
would not hold it so I had to craft another idea.
First idea was a logon script but login scripts run in the USERS context and
sometimes depending on what you put in the script requires certain
permissions.
I also only want this to run for a short while so I decided to use GPO and I
will disable the policy later.
I made a batch file and used group policy to to add it to computer
configuration / windows settings / startup scripts.
This site helped:
[/url][url=http://www.2000trainers.com/article.asp]http://www.2000trainers.com/article.asp ... 198&page=1
[start of file]
@ECHO OFF
VER|FIND "XP">NUL
IF NOT ERRORLEVEL 1 GOTO WinXP
VER|FIND "2000">NUL
IF NOT ERRORLEVEL 1 GOTO Win2K
GOTO BADOS
:WinXP
ECHO WinXP
GOTO END
:Win2K
ECHO Win2K
if exist "c:\winnt\$NtUninstallKB824146$" GOTO END
START notepad \\server\netlogon\info.txt
"\\server\apps\Security Patches Win2k\Windows2000-KB824146-x86-ENU.exe"
/u
/q
:BADOS
ECHO This OS is not supported
GOTO END
:END
[end of file]
INFO.TXT says:
::::Message::::::::
Your computer is installing the latest Microsoft Hotfix and will reboot
when
finished.
|
|
|
Create A Login Warning Message |
Posted by: Digerati - 2003-12-18, 09:54 PM - Forum: Tips and Tricks
- No Replies
|
 |
To create a login warning message (such as one reading "For Business Use Only, Unauthorized use is prohibited."), do the following
1] Start RegEdit (regedt32.exe)
2] Move down to HKEY_LOCAL_MACHINE/Software/Microsoft/Windows
NT/Current Version/Winlogin
3] Edit the following items:
|
|
|
Disable CD-ROM Auto-Run |
Posted by: Digerati - 2003-12-18, 09:53 PM - Forum: Tips and Tricks
- No Replies
|
 |
1] Start RegEdit (regedt32.exe)
2] Go to HKEY_LOCAL_MACHINE/System/CurrentControlSet/Services/Cdrom
3] Edit the following item:
|
|
|
Automatically Login User When NT Boots |
Posted by: Digerati - 2003-12-18, 09:52 PM - Forum: Tips and Tricks
- No Replies
|
 |
For NT 3.51:
Use REGEDT32.EXE, and search for the key HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon. Fill in the keys DefaultDomainName, DefaultUserName, and DefaultPassword with the values of the already-established Windows NT user. You may have to add the DefaultPassword key.
Then choose Add Value from the menu and add a new key, named AutoAdminLogon. Select REG_SZ for the Data Type. Enter "1" (without the quotes) in the String field.
Save the changes and restart - Windows NT should automatically log the system on as that user.
For NT 4.0:
The Method above does not work properly with NT 4.0. The easiest method is to simply download the Microsoft TWEAKUI powertoy. It has a tab labeled "NETWORK" that allows you to specify what user id and password you want NT 4.0 to automatically use for logging on during the boot process.
NOTE: This can be a BIG security problem - only use it on machines that are physically secured.
|
|
|
Increase Your Login Security |
Posted by: Digerati - 2003-12-18, 09:52 PM - Forum: Tips and Tricks
- No Replies
|
 |
By default, Windows NT 4.0 displays the name of the last person who logged on the system. This can pose a security threat, especially if a user's password can be guessed from the account name or the login environment. To turn this "feature" off take the following steps:
Launch the Registry editor. (regedt32)
Go to Hkey_Local_Machine key.
Locate the Subkey\Software\Microsoft\WindowsNT\CurrentVersion\Winlogon.
Select the ReportBootOK item.
Select Edit/New/String Value from the menu bar.
Type DontDisplayLastUserName for the string's name.
Double-click the new string to edit its value.
Change the value to 1.
Click OK.
Close the Registry editor.
|
|
|
Moving a Profile from Workgroup to a Domain |
Posted by: Digerati - 2003-12-18, 09:51 PM - Forum: Tips and Tricks
- No Replies
|
 |
You've been using a workgroup setup and now are moving to a Domain setup. The users have desktop settings and you'd like to keep these when they login as a domain user but the settings are lost.
Log in with the local userID on the machine, open REGEDIT.EXE, select the \HKey_Current_Uuser key, and choose Registry|Export registry. The resulting .reg file can then be used by the user after he logs in to his domain account, just dbl-clicking on it. That will transfer the settings. Make sure he has full rights to his \HKey_Current_User key of the registry
|
|
|
|