windows

How do you set the default counters running when you start perfmon?

When you start perfmon*, it loads running 3 counters: Memory "Pages/sec", Physical Disk "Disk Queue length" and Processor "% Processor Time". How can I change that to be counters I care about? *To start perfmon, either type "perfmon" at a command prompt or under "Administrative Tools" select "Performance" ...

Foreign Characters Appearing In Git-Managed Files

I am using git 1.7.2.3 via cygwin on Windows 7 and seeing strange artifacts appearing in some of my source files when switching branches. git status reports everything as unchanged yet they crazy characters are present. I've confirmed on GitHub that the files are as they should be in the repo. My Copy: ਍        ⼀⼀⼀ 㰀猀甀洀洀愀爀礀㸀ഀഀ ...

Installing OpenX on Virtual Machine

I am a web developer working with a server admin to install OpenX Source on one of our virtual machines (Windows). We have tried several methods including the following: Creating a virtual directory called "openx" and installing the files exactly as they came from the OpenX ZIP file. We are still unable to pull up the index.php file in...

LSP (Layered Service Provider) OS comatability

Hello! Which operationg systems support LSP (Layered Service Provider). Interecting operating systems (Windows XP 32/64bit,Windows Vista 32/64bit, Windows 7 32/64bit, Windows Server 2008 32/64bit, Windows Server 2008 R2 32/64bit) Thanks! ...

Running process that has space characters in its path name with emacs on Windows 7

For F# mode in emacs, one need the following line in .emacs. The problem is that because of space between file path, C-c C-s doesn't work. (setq fsharp-compiler "C:/Program Files/Microsoft F#/v4.0/fsc.exe") I had to copy the F# compilers to the directory that doesn't have space in its file path. (setq fsharp-compiler "C:/app/fsharp/...

Change the pitch (and speed) of audio during playback in Python

I'm working on a Python program that plays music. One feature will be a slider that the user can drag up or down to change the pitch of the music as it plays. For example, if the pitch is set to 2, then the music will sound one octave higher, it will play twice as fast, and it will last half as long. All I'm really changing is the playb...

Why do I get missing DLL errors debugging my Fortran code using GDB on Windows 7 64-bit (using Eclipse/Photran/Cygwin)?

My setup is as follows: OS: Windows 7 Home Premium 64-bit Eclipse: Helios 3.6.1 64-bit with CDT and Photran Java SE Runtime Environment: 1.6.0_21 Java Hotspot: 64-bit Server VM (build 17.0-b17, mixed mode) Cygwin 1.7.2 (32-bit) My initial test Fortran application simply prints 'Hello World!' and exits. The code builds and runs fin...

Malloc only once for ALL adapters when using GetAdaptersInfo()?

I looked at the GetAdaptersInfo() sample in MSDN: http://msdn.microsoft.com/en-us/library/aa365917%28VS.85%29.aspx and noticed that while the sample attempts to iterate through ALL adapters, it only allocates memory for the first one. Is this a bug? If not, why not? Do all adapters have the same info size? To further clarify my ques...

Connecting a remote container on different host to the main container on different host in JADE.

Hi all, Can anyone help me setup container connectivity between different hosts in JADE. I am following the tutorial at http://jade.tilab.com/doc/tutorials/JADEAdmin/JadeContainerTutorial.html Any Help is really appreciated.. Thanks aditya ...

How to run exe before or after "RunProgram" from 7zip sfx files setting on config.txt?

I am using 7zip to pack an installation (im using 7z because i need it to work in linux and windows). From what i've been reading the config.txt file can contains this: ;!@Install@!UTF-8! RunProgram="Installer.exe" ;!@InstallEnd@! But what if i need to run another exe before or after running installer.exe? Is it possible like it is i...

How to upgrade the ComCtl32.dll?

my version is v5.08 how to upgrade it to version 6.0? ...

Practice Unix on Windows Machine

Hi Folks, I want to practice Unix (mostly Korn Shell Scription and VI Editor) on a windows Vista machine. Whats the best solution for this? I dont like Cygwin.. so anything other than Cygwin which gives the closest feel of Unix Environment without re-installing the OS. Thanks. ...

Distributed Revision Control with automatic synchronization or Eclipse plugin better than FileSync?

I have what I hope is not a unique situation... ...and I'm looking for suggestions. I am looking for a better synchronization plugin for Eclipse than FileSync -or- I am looking for a distributed (preferably) version control system that will allow me and the other developers in my team the ability to work with local files and have tha...

How to detect if any sound plays on a windows xp machine

Is it possible to detect if any sound plays on a windows xp machine? Help in any language would be useful. I basically need to write a program that runs all the time and outputs some text to a file whenever a sound plays. I don't need any specific information about the sound, just whether a sound is playing. I don't care whether the ...

Mercurial color extension in Windows Powershell

Is there a way to enable color support for Mercurial in Powershell on Windows 7? The ColorExtension page says to add [color] mode = win32 to your .hgrc file, but it doesn't seem to make a difference. Running hg status shows several files that have not yet been added to the repository, and I believe they should have a pink color (bas...

VB6 exe error 'Invalid Picture'

This is a bit of a grey-area question, so I'll try both here and Server Fault... I have a utility app, built with VB6. I no longer have source for the app. The utility was last used successfully on Sunday morning. When attempting to run the app this morning, I get an error dialog complaining about 'Invalid Picture'. On a second and thir...

Does MSDeploy require .net 4?

Does MSDeploy require .net 4? http://www.iis.net/download/webdeploy ...

Enabled php5 on a windows server?

On a Linux server I need to add the following line to .htaccess file. AddHandler application/x-httpd-php5 .php Is there something similar for a windows server running php4? ...

Browsers and winsock on windows

Hello! Is thit true that all browsers on windows OS work thru winsock? thanks ...

How can I find the users windows login username from ASP.Net?

I have an ASP.Net web application running on an IIS server, and I need to find the visitors login username. How can I can find this? When testing locally it found my username using new WindowsPrincipal(WindowsIdentity.GetCurrent());, but it finds NETWORK SERVICE when running the app on the server. ...