MS-DOS Batch File - Choice Command For Windows 8

Jan 3, 2014

I was browsing around and attempting to build a program with MS-DOS. I can't get the choice command to work in Windows 8, and I have browsed the internet searching for the problem and a solution. It seems that Microsoft has removed Choice from Windows 8 supported commands. Is there any way possible I can make this work? I also own a Windows XP desktop and I can make the codes on it, but I can't get them to run on Windows 8?

View 1 Replies


ADVERTISEMENT

Running Batch File In Windows 8.1?

Jul 8, 2014

I accidentally set the file open of .bat files to Notepad. From a link in this forum (How to Restore Default File Extension Type Associations in Windows 8 and 8.1)was able to reset the registry back I think. The bat file not longer asks for notepad but instead opens "How do you want to open this file" and ask me to look for an app. The batch files still do not run.

View 8 Replies View Related

NETSH Commands Not Working From Batch File

Aug 20, 2013

I'm trying to create a NETSH batch file that sets my TCP/IP settings to DHCP.

The line I want to use is:

netsh interface ipv4 set address name="My Custom Named Network" dhcp

If I run the global cmd prompt and paste this line, it works as intended. However, if I create a batch file with the same line, I get "The filename, directory name, or volume label syntax is incorrect".This is bugging me plenty.

View 9 Replies View Related

Batch File Utility To Create Ad-hoc Network

Feb 4, 2013

New Version (6/2/13)

- Changed name to Connec8
- Compiled as exe. This is for the sole purpose to force Administrator privileges on double click
- New icon
- Administrator privilege check on startup.
- Added option to restart the previous hotspot
- Implemented an easier way to enable Internet sharing
- Added blank lines for better readability

Download (dropbox) [URL] ....

Windows 8 is awesome. However it doesn't have the ability to create ad-hoc networks from Network and sharing center. The only way is to use netsh utility from CMD every time you want to start or stop your network. .

So I created a batch file to automate this process. All you have to do is to start it as administrator, follow the instructions and voila!. No need to open cmd again and again

This utility creates an adhoc network. You can use it for streaming Videos and Music or playing LAN games.

For Internet sharing aka Hotspot
Go to Network and Sharing Center –> Change adapter settings
Right click on the device which is connected to internet and select Proerties
Now, open Sharing tab, enable Allow other network users to connect through this computer’s Internet connection, and then choose the newly created ad-hoc connection from the list

View 1 Replies View Related

Can Create System Restore Point From Batch File Or Powershell?

Nov 9, 2012

Since Windows 8 is not creating System Restore points, apparently because I have a dual boot Windows 8 / Windows 7 setup, I'd like to schedule one every 3-4 days or so.

Is there any way to run system restore from Command line or batch file or Powershell? If so then I could schedule it to run when I want.

View 1 Replies View Related

Command Used To Make File System And Hidden File No Longer Working

May 29, 2014

The attrib +s +h command that is used to make a file a system and hidden file is no longer working. When i try to use the command on a folder, the folder just shows up as a normal hidden folder which can be easily viewed using show hidden items in view option. It looks as if every system file is not recognizing itself as a system file.

Also every folder in my system has appeared a desktop.ini and thumbs.db folder.

I am running Windows 8- 64 bit

View 1 Replies View Related

Windows 8 Installation And Choice Of Its Editions

Dec 30, 2012

An iso of Windows 8 contains all the its editions? If so, there is a utility that modifies its iso allowing to choose which edition for the PC installing?

View 2 Replies View Related

Setup Installation :: Windows 7 With 8.1 - Lost Dual Boot Choice Screen?

Jan 20, 2014

Dual booting windows 7 with 8.1. I had that neat looking boot screen that came up giving me a choice and setting default.

Now it boots to a crummy looking F8 type screen every time and I have to make a choice.

View 6 Replies View Related

Browsers/Mail :: Keep Getting Browser Choice After Reentering EU

May 10, 2013

After deleting the Browser Choice I keep getting the stupid prompt again the next time I log on to the Internet from INSIDE an EU country the wretched prompt appears again.

Is there any way to disable this POS PERMANENTLY -- I often travel from Outside the EU to inside it.

This stupid Browser prompt must be one of the most idiotic pieces of legislation Politicians ever had to deal with (and I've seen enough stupid politicians in my time).

View 1 Replies View Related

String Comparison In Batch Script

Jun 14, 2014

I am attempting to write a batch script that uses a program called Mailsend to send an email. The script then examines Mailsend's log output to determine if the email was successfully sent.

This is what I have so far:

Code: mailsend1.17b14.exe -to <snip personal info> -log temp.txt -attach test.txt.TailTail -1 temp.txt > temp2.txtDel temp.txtSet /p Message=<temp2.txtSet Message=%Message:~26%Set Cmess=Mail sent successfullyEcho %Message%Echo %Cmess%If "Message"=="Cmess" ( Echo Correct ) Else ( Echo Wrong )

Here is a rundown of what I am doing:

-The first line sends the email.
- The second and third use a program called Tail to delete all lines except the last one from the log file (the last line contains the output I'm looking for).
-The next 2 lines then assign the contents of the log file to a variable then truncate the first 26 characters (date and time info that I don't need).
-The next line creates a second variable that contains the desired output (i.e. "Mail sent successfully")
-The next two lines echos the contents of the variables.
-And finally, the last line compares the two variable and takes a particular action depending on whether the two variables are equal or not.

The comparison at the end is where I'm having problems. Every time I run the script, the last line I get printed on the screen is "Wrong" (i.e. the "Echo Wrong" command is executed meaning "Message" does not equal "Cmess"). This happens even when the email was sent successfully. I've tried various things and I haven't managed to get the "Echo Correct" command to ever execute, even when the output of the two Echo commands just before is exactly the same. I've even tried changing the "Set Cmess" line to:

Code: Set /p Cmess=<temp2.txt Set Cmess=%Cmess:~26%

And the output for the comparison is still "wrong". I can only think that there must be something wrong with how I structured the comparison.

How to get this script to work or script means of checking the log file for "Mail sent successfully"? This is what the log file contains if an email gets sent successfully:

Code: 07-Jun-2014 08:17:28.172: mailsend v@(#) mailsend v1.17b1407-Jun-2014 08:17:33.011: Mail sent successfully

View 6 Replies View Related

Batch Move Multiple Files Via CMD?

Jun 10, 2013

I have: x4 .gif images, x14 .jpg images, and x5 .png images in my Code: C:UsersSampleUserDownloadsimg14

folder and want to move them to these desired locations via cmd.

Move the x4 .gif images to: Code: C:UsersSampleUserDownloadsimg14.gif

Move the x14 .jpg images to: Code: C:UsersSampleUserDownloadsimg14.jpg

Move the x5 .png images to: Code: C:UsersSampleUserDownloadsimg14.png

Any way I can go about this using a single command? Multiple commands will work just fine as well, as long it's not one too many commands.

OS: Windows 8 Enterprise x64

View 4 Replies View Related

Search Command Prompt In Windows 8?

Jan 4, 2014

What's the "Search" command prompt in Windows 8 pls?

View 6 Replies View Related

Windows 8 Command Prompt Settings

Jul 29, 2013

I often format my laptop and uses virtual machine as well. So I had a batch (.bat) file to change all windows setting through registry. This batch file also changes command prompt screen size, buffer size and quick edit mode. However this does not work on Windows 8 command prompt setting.

Registry use to change the setting are:
- HKCUConsole\%SystemRoot%_System32_cmd.exe
- HKCUConsole\%SystemRoot%_SysWOW64_cmd.exe

Just wondering is there any way to change the setting in Windows 8 using batch file?

View 4 Replies View Related

Windows 8 - Looking For Key Command To See The Opened Applications?

Jul 27, 2014

In windows 7 there was a key command to see all the oppened applications in your computer that command was so useful and i dont know that command in windows 8

View 9 Replies View Related

Security :: Windows Command Processor Black Box Pop Up

Mar 4, 2014

Every time I switch on my laptop I get a windows command processor black box pop up with writing in it i cant read what the writing says because it disappears quickly some one says its a virus or spyware. when i run a virus scan no problems are found and when i run a malware scan it says no problems. How can I get rid of it?

View 2 Replies View Related

Windows 8.1 - Can't Close Command Prompt Window

Oct 18, 2013

with Alt+F4 in win8.1.

View 9 Replies View Related

Apps / Software :: Windows 8 Command To Unlock Keyboard

Feb 20, 2014

I somehow locked the keyboard on an hp 3125 netbook that runs Windows 8. What is the command to unlock the keyboard? I tried the fn(function keys) with no success.

View 1 Replies View Related

Customize Right Click Start Menu Command In Windows 8.1?

Oct 22, 2013

Is there a way to customize the Right-Click Start Menu Command in Windows 8.1 (like changing the "Command Prompt" to "Windows Update"...!

View 9 Replies View Related

Launch Windows Store Control Panel From Command Line?

Dec 26, 2012

I want to launch the Windows Store Control Panel in Windows 8 from Desktop command line, i know the EXE file is
"C:WindowsImmersiveControlPanelSystemSettings.exe".

View 4 Replies View Related

Hardware Drivers :: Command Prompt Message On Startup (Windows 8 64-bit)?

Sep 15, 2014

I accidentally installed an adware called Rocket tab however I uninstalled it but after restarting my computer, I am prompted with the following error message. Now, every time I start up my computer this message pops up .

View 4 Replies View Related

How To Run A Command At Startup As Admin

Sep 15, 2014

My son's pc will not hibernate on it's own. I used CMD in administrator mode and ran:

powercfg -requests

I found that a usb audio device was currently in use. I can disable it with:

powercfg -REQUESTSOVERRIDE DRIVER "USB Audio Device" SYSTEM

This works, and the pc can now enter hibernation. But when it resumes, the usb driver is running again. Is there a way to run...

powercfg -REQUESTSOVERRIDE DRIVER "USB Audio Device" SYSTEM

Using admin privileges at startup? I want it to be automated.

View 6 Replies View Related

Command Prompt Needs To Run Anything As Admin

May 15, 2014

I seem to be having a problem when command prompt needs to run anything as an admin.

This happens whenever it feels it needs to do so, like when setting a program to run as admin myself, or running an installer, like the setup for firefox (I'm in chrome right now, but I happen to prefer firefox)

Basically, whenever it needs to run anything, it'll open up to the user account controls window in this picture:

Upon clicking yes, it opens the command prompt you see in the left of the image for a split second, then closes. (it took many attempts to get a clear shot using printscreen, and I did edit it to have the UAC prompt in the same image to save space)

I'm guessing a manual regedit of some kind, as running any program is obviously blocked by the problem itself. (I cannot install any fixing programs, and anything that needs to run as admin to work is out as well).

View 9 Replies View Related

Cannot Run Command Prompt As Admin

Oct 27, 2013

I need to execute the command prompt as admin. When I try to do it the command prompt window doesn't open and there are no errors. If I run the command prompt without admin privs it works, but I then can't do what I need to do in the admin window.

Note: I am running Windows 8.1.

View 9 Replies View Related

How To Open Elevated Command Prompt

Jan 24, 2013

How do I open an elevated command prompt?

View 2 Replies View Related

Network / Sharing :: Max Value For -w In Ping Command?

Nov 15, 2013

Trivia question: max value for -w in ping command? I don't mean the max wait a ping can experience. I just mean the maximum value after -w on the command line that will not give an error. If they use a 32 bit integer then it's pretty big. But if it's only 16 bit maybe we're limited to 64k?

ping 127.0.0.1 -n 2 -w 50000 > nul
--------------------------^^^^

For the purpose of this trivia let's limit it to Windows 8 command line .. not Linux or OS/2 or whatever.

View 6 Replies View Related

How To Add A Keyboard Shortcut For Command Prompt

Mar 18, 2013

I would like to add a keyboard shortcut for Command Prompt (CMD), for example if I to have it as [Win+C] or something similar.

View 9 Replies View Related

Explorer Command Prompt Greyed Out?

Jul 28, 2013

Windows 8 Pro, 64 bit. In Explorer (file manager) under File, open command prompt, and open Windows PowerShell are greyed out. This is a new situation. How can I restore them?

I didn't realize I had to have a drive or folder selected to activate the prompt.

View 1 Replies View Related

Add User Command To The W8.1 Start Button?

Oct 24, 2013

Is there any way to add a command to the Windows 8.1 start button (right mouse click throws up a menu).

That could be quite useful for launching something like a user tool bar from the start button.

View 4 Replies View Related

Random Command Prompts Showing Up?

Jun 26, 2014

im getting random command prompts showing up then disappearing, and sometimes disabling my desktop and not allowing me to browse through folders saying paths dont exist, was able to sign out and back in to my account and was able to quickly open chrome to download hijackthis, and to post it to here. my problem is, i dont understand what it all means.

I have an hp laptop with windows 8, everything should be updated, and my spybot shows no problems.

Logfile of Trend Micro HijackThis v2.0.5

Scan saved at 1:30:40 PM, on 6/26/2014

Platform: Unknown Windows (WinNT 6.02.1008)

MSIE: Internet Explorer v11.0 (11.00.9600.17126)

Boot mode: Normal

Running processes:

C:Program Files (x86)Norton Internet SecurityEngine21.3.0.12NIS.exe

C:Program Files (x86)Spybot - Search & DestroySpybotSD.exe

C:Program Files (x86)CyberLinkYouCamYCMMirage.exe

C:Program Files (x86)CyberLinkPower2Go8CLMLSvc_P2G8.exe

[code]....

View 2 Replies View Related

Maintenance :: SFC / Scannow Command Broken?

Jun 15, 2013

bcdedit /set increaseuserva 2500.

Tried this command because of Fallen Samurai Shogun 2 not working onmy windows 8 x64 enterprise. Says command not recognised.

So I tried. SFC /Scannow

Said the windows resource protection could not start the repair service.

So I checked services: Windows module installer. It was set to manual already. It was not running though. I pressed Run. And tried again SFC/scannow.

View 7 Replies View Related

How To Elevate Command If User Is Not Admin

Mar 25, 2014

I am trying to elevate a command given (in this case just another cmd.exe) if the user is not admin. However i get the error:

Code:

C:Usersmetul_000>runas /user:administrator cmd.exe
Enter the password for administrator:
Attempting to start cmd.exe as user "WINDOWS8administrator" ...
RUNAS ERROR: Unable to run - cmd.exe
1326: The user name or password is incorrect.
C:Usersmetul_000>

This is a personal pc, and I know i put in the password correctly as i have done it a few times slowly typing in my admin password to confirm that it is input correctly. So why am i getting this error? Initially my overall goal is to get this python script to say you are admin ...

Code:
import ctypes
import subprocess
import sys
import os

[Code] ......

if you are admin its done, but if you are not admin then it reruns itself with the so called run as command to get admin rights. However currently it just pulls up the run as usage messages. The full command this script attempts to run then is:

Code:
C:Usersmetul_000>runas /user:administrator "python3 test2.py"
Enter the password for administrator:
Attempting to start python3 test2.py as user "WINDOWS8administrator" ...
RUNAS ERROR: Unable to run - python3 test2.py
1326: The user name or password is incorrect.
C:Usersmetul_000>

View 8 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved