Tagged Questions
0
votes
1answer
20 views
Can't get the http response using telnet from the command line [closed]
I'm using Windows 7 (x64). I want to send an http request from a command line and to get a response. I use Telnet. I type in the command line: telnet www.google.com 80.
After I press "enter" the ...
0
votes
0answers
14 views
Mongo shell in Windows 7 “unicode text could not be correctly displayed”
I am using Windows 7 64 bit and i have English and Greek language installed for my keyboard.
If i switch to mongo shell and i try to write a UTF Greek character, i get this error
"Unicode text ...
0
votes
3answers
34 views
cmd /C “MyBatch.bat Param1 Param2 Param3” works under WinXP but fails under Win7
This command is in the middle of a large batch file that has worked problem-free for more than 5 years under Windows XP, but when run under Windows 7(32bit) it reports "MyBatch.bat is not recognised ...
0
votes
1answer
44 views
Windows 7 remote shutdown: Access denied(5) [closed]
I am trying to force a remote shutdown from my laptop to my PC:
machine> shutdown -m \\192.168.2.10 -s -f -t 0
192.168.2.10: Access denied(5)
I am in a WLAN/LAN environment:
Laptop is in WLAN ...
-1
votes
1answer
22 views
find (ms-dos command) looking into sub directories files
I am trying to use find to look for files that contain a specific keyword. To my understanding, find takes in a file not a directory (that's why it is giving me error). So is there a way i can go ...
0
votes
0answers
20 views
I want to get last user of files in directory
I have tried to use wmic datafile to get information about a ton of files I have. It looks like there is no get attribute to see who was the last person to accessed the file and who created it. Is ...
0
votes
0answers
23 views
How do I get NET SESSION to display computernames / hostnames? [migrated]
On my W7 box at work I send some jobs off to some nodes on a cluster, then when I want to check which nodes have sessions open on my W7 box I usually just type NET SESSION at the cmd prompt and I get ...
2
votes
1answer
51 views
Batch ~dp0 doesn't work with admin rights?
I have a batch file which looks like this:
set OWNPATH = %~dp0
for /r %OWNPATH% %%F in (*.ocx) do ( echo %%F )
It correctly lists all OCX files in the same folder when I start it, but lists the ...
0
votes
1answer
41 views
cannot use class QProcess in qt on windows 7
I just used QProcess to execute a exe file in qt on windows XP. It works normally, while not on windows 7. I think it's obviously because of the UAC issue on windows 7(or windows VISTA). Does anyone ...
0
votes
1answer
87 views
CMD instead of running command just opens it
OS Win7, GAE 1.7.6, Python 2.7.3
Working on Google app engine project with 2 other people, project leader gave us sample data via sampleData.cmd to run it inside.
nameOfTheApp\main>sampleData
...
0
votes
1answer
150 views
Passing a php variable via url in a batch file on local wamp setup
Environment: Windows 7, PHP 5.3.13, Apache 2.2.22 (WAMP)
Working locally
Accessing external web service
I'm attempting to assign a global variable in PHP via URL inside of a batch command prompt to ...
0
votes
2answers
338 views
cmd.exe doesn't terminate when using a .bat file
[Context: I'm trying to create a shortcut to a .bat file with a relative "Start in" path as roughly described here and here.]
cmd.exe supports the /c switch. According to the documentation, this ...
2
votes
3answers
213 views
Update file or folder Date Modified
I need to update the "Date Modified" property of files and folders as they are copied from one location to the other so that "Date Modified" = Current System Time. I have a PC with Windows 7, and I ...
0
votes
1answer
148 views
Win 7: CMD batch file for creating directories based on filenames
I'm working on a CMD line batch file in a Win7 environment that will create directories based upon the filenames listed in a directory.
I am using this code, but the output created is partial and ...
0
votes
1answer
222 views
Remotely determine interactive/active user on Windows 7 machine
Anyone else had to determine who the currently logged on user is remotely in a Windows 7 environment? I am using .NET 4.0 and C#. The environment is mixed XP and 7.
WMI queries involving sessions ...
0
votes
0answers
94 views
MySQL silent install does not work on Windows 7
When the following is executed in a command window:
set mysql_msi="F:\mysql-essential-6.0.7-alpha-winx64.msi"
msiexec /i /passive %mysql_msi% INSTALLDIR="C:\Program Files\MySQL\MySQL Server 6.0\" ...
1
vote
4answers
243 views
Im getting “dig is not recognized as an internal or external command” when I try to run a batch file from java
import java.io.*;
public class Main {
public static void main(String[] args) throws IOException, StringIndexOutOfBoundsException
{
Runtime.getRuntime().exec("cmd /c start ...
3
votes
2answers
53 views
how do i get console to notify me when it is finished running a script
I am using nant, but this can apply to any thing, I just want to know if there is a way to set windows cmd or console2 or some kind of shell to give me a popup or make a noise when it is "finished" ...
0
votes
0answers
181 views
How to make a keyboard shortcut for command prompt on windows 7? [closed]
I googled a bit and found this .
In my PC , when I right click the cmd.exe and go to Properties->Compatability ,
Run this program as an administrator is grayed out and I cannot check it .
Found ...
0
votes
0answers
138 views
how to change files permissions in windows cmd for a folder recursively [closed]
in win7 and in win2008 (srv)
how do I chage the permissions to all files under a folder
via cmd to All user?
I unsuccessfully have tried
ICACLS "filename" /grant "Users":F
CACLS files /e /p ...
0
votes
2answers
190 views
Git pull from command line prompts for username and password
I am running
git pull
on a repository in command-line. It asks for username and password. When I complete them the pull is successful, but I would like to run git pull from batch file and I would ...
1
vote
3answers
771 views
create curl command in windows 7 command line
I downloaded the curl.exe file from the curl website and put it in my c drive. C:\curl.exe . How do I make that a shortcut in the command line?
For instance, instead of typing "C:\curl ...
0
votes
1answer
87 views
Updating Path instead of overwrite cmd
I am running the following cmd to set my system environment variable.
call C:\Windows\system32>reg add "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control
\Session Manager\Environment" /v ...
0
votes
1answer
352 views
CMD - Wait for parallel command lines to finish?
I execute 4 tasks in parallel via command line ( win7 cmd):
start defrag /A c:
start defrag /A d:
start defrag /A e:
start defrag /A f:
dir
However the dir command execute right after the first ...
0
votes
1answer
243 views
Robocopy Invalid Parameters
I'm using the batch command robocopy to copy my website source files from my flash drive to my dad's laptop for a backup. I've ran it as an administrator and I get an invalid parameter error message. ...
0
votes
3answers
556 views
Query windows event log for the past two weeks
I am trying to export a windows event log but limit the exported events not according to number but according to time the event was logged. I am trying to do that on windows 7 and newer. So far my ...
0
votes
0answers
146 views
How to find that 'runas' execution finished?
I use ruby 1.9.3p194 (2012-04-20) [i386-mingw32] on Windows7. Recently I upgraded from Windows XP where I didn't have to run commands as administrator so I wasn't facing such issue.
To do mySQL ...
1
vote
2answers
282 views
In cmd, how to get path of folder with caret in name
In Windows 7's cmd, I understand that %~dp0 gives the folder path of a batch file, as in
How to get folder path from file path with CMD
However, it doesn't work if there is at least one caret (^) in ...
0
votes
1answer
64 views
Command Prompt Script command “cd”
Ok so I was making my own little command prompt for my own personal use and I have been fighting to make it work for the past 2 hours. Here is what I have done:
@echo off
set /p labnum="Enter Lab ...
0
votes
1answer
2k views
Basic windows commands (ping, ipconfig) need admin rights - looking for an option
On my main pc (Win 7 64bit) basic windows commands like ping and ipconfig suddenly need admin rights.
If I start a normal command-line window, these commands are not found anymore ("X is not ...
0
votes
1answer
2k views
Windows 7 Command Prompt: How do I execute a batch script from the command line?
I'm using Windows 7, and my problem is running this file from a console (cmd.exe):
W:\software\projects\myproject\build\msvc\build.bat
When I move into the folder containing the file manually and ...
0
votes
2answers
178 views
Cmd and mmc with whitespace paths
I'm trying to create a shortcut to an .msc file, but I want to open the file with another account.
The closest I've come is:
runas /savecred /user:PATHy\USERx "mmc \\folder\subfolder\folder with ...
0
votes
1answer
621 views
how do I make the txt output from a .cmd file contain the current date and time in the filename?
I have a script that scans computers for a certain registry entry. I want to make it to where after the scan the text file that is created, to include the date and time of day as part of the filename ...
1
vote
0answers
191 views
git sees the system profile as home instead of the user home folder (Windows 7)
I am new to git and am following this bitbucket tutorial for initial setup. In the git bash window, it shows me as brnt@brntslaptop, but if I enter:
$ ls -a ~/.ssh
ls: ...
1
vote
1answer
544 views
cmd.exe on Windows 7 Ultimate with transparent background [closed]
How can I make my command prompt's background transparent?
I have used Econsole before but I didn't like it because it messes up the background a lot.
Any Ideas?
1
vote
1answer
261 views
How to force invoked command's STDOUT into invoking cmd.exe's STDOUT?
Context: Oracle Enterprise Manager has a feature to "execute host command." If into that feature I enter "dir c:\temp" then the output window echos the command and then shows a directory listing. If ...
0
votes
3answers
1k views
Windows 7: cmd.exe: setting startup directory (in a link to cmd.exe)
I am running Windows 7 and when I run cmd.exe I want it to start up
in a directory named C:\foo\bar. I remember being able to create a
link to this executable on the desktop and right clicking ...
0
votes
2answers
44 views
Batch Lines not showing up correctly
Trying to add some lines ╔═╬ to my batch files. The issue I am having is that they do not show up properly in CMD.
I am using Windows 7 Professional.
0
votes
0answers
159 views
Adding paths to “Libraries” in Windows 7 via Batch file
I am a big fan of the "Libraries" feature in Windows 7. I run a SBS2003 server at my workplace and currently we have a batch script that maps certain network shares to Mapped Drives at client startup.
...
4
votes
1answer
2k views
Run Python in cmd
I am running python 2.7, I can run a program fine when I open the *.py file.
But when I go to cmd and type "python *.py any other args", it doesn't work, it says that python is not recognised. This ...
0
votes
1answer
990 views
Access for delete files through a batch file is denied at windows 7
I am writing a batch file to clean some trashes files for my personal computer. Also I have checked the security option in properties, the batch file has full permission.
@echo off
echo running......
...
1
vote
2answers
726 views
Why won't PEAR work on my PHP Windows installation?
I'm running Wampserver on Windows 7, and I can't seem to get PEAR to work. Well, that's
not entirely true-apparently it works on the command line (both cmd.exe and on Cygwin).
Here's the sample ...
1
vote
1answer
762 views
Basic commands such as timeout and ping not available during/after running batch script
I'm creating a bactch file, which in turn needs to create and execute another bactch file in a second window. I'm using the "start" command, but in the new window basic commands such as timeout and ...
0
votes
0answers
206 views
Windows 7 using symlinks in cmd
I am trying to use symlinks with ffmpeg through a commandline but cmd seems to be treating the symlink files as if they were actual files and not pointing ffmpeg to the correct files.
I need to ...
0
votes
1answer
88 views
Rails commands on windows have a delay before execution
I am using Ruby on Rails under windows, installed with railsinstaller. Everything works fine, except that any command such as rails console or bundle exec rake db:migrate takes on average 8 seconds ...
0
votes
1answer
156 views
Error while executing (.exe ) from windows command script (.cmd) file
I have the following syntax in the .cmd file, where PathList is console application with .exe as extension.
cd D:\Sample
D:
PathList 2> file.txt
This syntax works fine if the file is saved with ...
4
votes
2answers
262 views
installation without showing command prompt
i have made a installer with installshield 2008 .
main problem is , while installation through setup.exe , command prompt appears several time in this procedure. for convenience of end user i need to ...
0
votes
2answers
307 views
Listing all subdirectories with a specified name
I am trying to get a list of paths of all subdirectories (recursively) which have some specified name, e.g. "bin". The problem is that if current directory contains subdirectory of that name, DIR ...
1
vote
1answer
166 views
Strange character in textoutput when piping from tasklist command WIN7
Strange character 'ÿ' in textoutput (should have been a space). Why is this, how can I fix it? Does not happen when command is executed at prompt. Only when piped to textfile.
Windows 7
c:\tasklist ...
1
vote
1answer
451 views
Python script working in IDLE, but not working when run from CMD or Eclipse
I have a rather strange problem.
When I run a python module (which imports other .py and .pyd files) from IDLE or in Debug mode from Eclipse, everything works fine and the final result is correct. ...




