Skip to main content

How To Create Undeletable And Unrenamable Folder In Windows

How To Create Undeletable And Unrenamable Folder In Windows

The method is very simple and easy and you can easily do this with a little cmd trick. Just follow the below steps to proceed.

First of all go to Start and then Click on RunNow type cmd & hit enter (Command Prompt will get opened).Always remember that you cannot create any undeletable & unrenamable folder in your root directory of storage. Which means these folders can’t be created in the drive in which your windows is being installed.Now type D: or E: and then hit enterType md con\ and hit enter (md – make directory)You may use other words such as kk,th and kb instead of con in above step.Now open the directory and you will see the folder created of name con there.Now lets try to delete that folder or rename that folder windows will show the error message there.This folder now can’t be deleted and renameable by this way.

How to delete the Unrenamable and Undeletable folder

First of all open the Command Prompt.There type D: ( if you have created the folder in D: drive) & hit enter.Now there type rd con\ (rd – remove directory)Now again open the directory and the folder will got deleted from there.

So above is all about How To Create Undeletable And Unrenamable Folder In Windows. By this way you can easily make sure that the folder that is containing your personal data that is pics, videos and audio etc is secure from any unauthorized access.Hope you like the post, Don’t forget to share it with your friends and leave a comment below if facing any problem at any step in the method discussed above.

Comments

Popular posts from this blog

Convert Text Into Audio Using Notepad - TechnoBytes

Convert Text Into Audio Using Notepad How To Do It ? Open Notepad file on your Windows PC. Copy and paste the below mentioned code : Dim msg, sapi msg=InputBox(“Enter your text for conversion–www.techvorm.com”,”TechVorm Text-To-Audio Converter”) Set sapi=CreateObject(“sapi.spvoice”) sapi.Speak msg Save this file with any name with .vbs as extension. For eg. Text-To-Audio.vbs Thats it ! Your Text to Audio converter is ready to be used. Now open the saved file and key in the text you want to convert and click OK. If you find any difficulties in using this code, let me know via comments section.

Toggle Keyboard Button Simultaneously - TechnoBytes

Toggle Keyboard Button Simulteniously Using Notepad (and VB) you can set different keys on your keyboard to toggle continuously. Following are the 3 tricks using which different keys can be set to toggle simultaneously. Follow the steps given under each head to try out the tricks. 1. Caps Lock Key Open Notepad. Paste the following code in the notepad file: Set wshShell =wscript.CreateObject(“WScript.Shell”) do wscript.sleep 100 wshshell.sendkeys “{CAPSLOCK}” loop Save the file with anyname and .vbs extension. and close it. Now open the newly created file and see how the caps lock key behaves on your keyboard! 2. Hit Enter Key Continuously Open Notepad. Paste the following code in the notepad file: Set wshShell = wscript.CreateObject(“WScript.Shell”) do wscript.sleep 100 wshshell.sendkeys “~(enter)” loop Save the file with any name and .vbs extension and close it. Now open the newly created file and see how the enter key behaves! 3. Hit Backspace Key Continuously

Shutdown Computer With Message - TechnoBytes

Shutdown The Computer After Conveying Message This one is kind of an annoying trick and if used unknowingly can certainly cause problems (am serious). What this trick does is, after conveying a (any) message it shuts down the computer without any confirmation. In order to create the Shutdown file, follow the below mentioned steps: Open Notepad. Paste the following code in it: @echo off msg * Its time to get some rest. shutdown -c “Error! You have to take rest! Byeeeeee” -s Save the file with any name but with .bat extension and close it. For eg. TakeRest.bat