The netsh tag has no wiki summary.
9
votes
2answers
4k views
What appid should I use with netsh.exe?
The netsh command wants an appid (see here) :
netsh http add sslcert ipport=0.0.0.0:8000 certhash=0000000000003ed9cd0c315bbb6dc1c08da5e6 appid={00112233-4455-6677-8899-AABBCCDDEEFF}
I've not been ...
4
votes
2answers
368 views
.NET or Win32 Equivalent of “netsh http add urlacl” command
There are several questions around how to allow a self-hosted WCF application to use BasicHttpBinding with HTTP.SYS without requiring administrative privileges. It boils down to needing to grant ...
3
votes
2answers
338 views
Got “The system cannot find the file specified” when I run NETSH from CreateProcess but it works ok on Command Prompt?
I have an NT service that calls a console program written in Delphi 7, let's call it failover.exe that in turn calls NETSH using a procedure I found:
procedure ExecConsoleApp(CommandLine: ansistring; ...
3
votes
1answer
2k views
C# HttpListener without using netsh to register a URI
My application uses a small webserver to server up some files and have a web interface for administration remotely. Right now the user has to use netsh to register the URI like so
netsh http add ...
3
votes
1answer
736 views
How do I disable the network connection from .Net without needing admin priveledges?
I may be SOL on this but I thought I would give throw it out for possible solutions.
I am writing a computer access control service to help me control my kids' computer use. Plan on open sourcing it ...
3
votes
3answers
2k views
Querying a DHCP server in C#
I need to get the mapping of MAC to IP stored on DHCP server, either through a program running on the server itself or preferably through a program running on one of the DHCP clients.
I understand ...
3
votes
1answer
3k views
netsh htpp add urlacl : add reservation for a group
This article explain how to configure a namespace reservation for a user using netsh.exe as follows:
netsh http add urlacl url=http://+:80/MyUri user=DOMAIN\user
The parameter user= is said to ...
2
votes
1answer
71 views
Add ports with netsh in WCF as domain admin without admin privileges
I have a service with WCF in a WPF application (self-hosted) and I have the typical error "Your process does not have access rights to this namespace".
The users can’t have admin privileges so using ...
2
votes
2answers
790 views
netsh http add urlacl problem
I'm trying to set up some ports from a WIX installer. For WinXP we use httpcfg in a custom action and this works fine. For Win7, we're trying:
netsh http add urlacl url=http://127.0.0.1/8346/ ...
2
votes
2answers
216 views
What's the difference between http://*:80 and http://+:80
In learning about Web Deploy I came across some netsh.exe commands that talk about http://+:80 and http://*:80. What do those mean?
2
votes
6answers
2k views
How to get default NIC Connection Name
IMPORTANT EDIT: Back again on this subject.
As you said there should be no default NIC, I'm trying to understand if there is a way to detect all the NICs that are actually connected.
Having the MAC ...
2
votes
1answer
511 views
MTU mismatch between GetIfEntry and netsh
I'm working on pseudo-transport layer software that runs over UDP, providing reliable connection-oriented transmission, as an alternative to TCP. In order to maximize network efficiency, we query the ...
2
votes
1answer
1k views
WCF selfhosted service, installer class and netsh
I have a selfhosted WCF service application which I want to deploy by a msi installer package. The endpoint uses http port 8888. In order to startup the project under windows 2008 after installation ...
2
votes
1answer
873 views
Programatically Create DHCP Reservation in C#
I have been assigned the task of creating an application that takes in a MAC address and creates a DHCP reservation for that MAC address. Is there any API built into .NET to easily accomplish this?
...
2
votes
3answers
4k views
WCF self-hosted service with transport security (Authentication failed because the remote party has closed the transport stream.)
I have a self-hosted service that I want to add transport security to.
I've set WSHttpBinding.SecurityMode to Transport and the ClientCredentialType to HttpClientCredentialType.None.
I've created a ...
1
vote
2answers
107 views
How to create an IP alias on Windows
I need to create an alias for my network interface such that it can be accessed locally with either 127.0.0.1 or 33.33.33.33.
In *nix I would do this:
sudo ifconfig en1 inet 33.33.33.33/32 alias
...
1
vote
0answers
153 views
Windows 7 Firewall: Modify group items from command line
I am creating an interface that allows the user to manage (among other things) the Windows Firewall. The GUI that comes with Windows looks like this
My GUI is written in Java and uses the netsh ...
1
vote
3answers
370 views
Programatically set a binding to require client certificate negotiation in iis
How can I achieve the equivalent of setting clientcertnegotiation=enable with netsh from an application using C# (without execing a command line).
netsh http add sslcert ipport=0.0.0.0:8000 ...
1
vote
2answers
1k views
VBS or BAT script for opening WMI ports in windows firewall
How can you most reliable open ports need by WMI in windows firewall ? In need this in form of a BAT or VBS script and it needs to work on win XP and all newer.
Thank you very much.
EDIT1: win XP ...
1
vote
1answer
217 views
How do I add netsh advfirewall context command in Visual Studio 2010 Click Once publishing?
I have a .Net 4.0 Windows application which requires access thru the firewall. I know about the netsh advfirewall firewall command, but I would like very much to have this program allowed at install ...
1
vote
1answer
94 views
Managing HTTPS server certificates from inside a program?
I want to perform the following actions from inside .NET code:
Create a self-signed certificate into the store, obtain its thumbprint;
Import an existing certificate file into the store. Likewise, ...
1
vote
1answer
328 views
Disabling Bluetooth support in Windows XP-7
Hi
I'm trying to write a program to disable the Bluetooth service on computers (so, forbid users from connecting to Internet via Bluetooth)
I've tried following methods:
Disable the "bthserv" ...
1
vote
2answers
708 views
Servicehost throwing an error, even though added to configuration with netsh
ServiceHost.Open() is throwing this error:
HTTP could not register URL http://+:8001/. Your process does not have
access rights to this namespace (see
...
1
vote
1answer
927 views
How do you set up HTTP ACL's for a WCF 3.0 REST application on Windows 7?
I have been reading O'Reilly's "RESTful .NET" and am working with the example program on pg. 24 - 25. This sets up a custom binding for handling REST requests. When I execute the code, it fails as ...
1
vote
1answer
693 views
netsh error on windows 2008 R2
We are upgrading the server from Windows 2003 to 2008. As part of the process, I need to configure a port with a SSL certificate. When I ran the following command:
netsh http add sslcert ...
1
vote
0answers
240 views
Cannot get StandardOutput for some process calls in cassini or unit test on win7 64
I am having trouble reading the output from a process when running several processes from .net. One example is the 'netsh' command.
I am trying to read all scopes from a dhcp server.
It is only ...
0
votes
4answers
27 views
Reading the command prompt output in .net
i want to call the netsh command from .net, i am using the Process class to initiate the process which calls the netsh command, and its working fine, now i want to get the output returned by the netsh ...
0
votes
0answers
11 views
Can we direct the netsh.exe to dump its output to a xml file?
Assuming I am entering the following command in the command prompt:
netsh.exe interface ip show config "Local Area Connection" > c:\temp\dump.txt
this command dumps the output to a text file. I ...
0
votes
0answers
77 views
WMI vs NETSH for Adding IP's to NIC with C#?
I am writing a small tool to simplify some of the stuff I do at work day to day, and the Windows GUI for adding IP's to the NIC is horrid. I am looking to find a decent way to...
Pull all Static ...
0
votes
0answers
22 views
Issue with x509 certificate binding to a port after the computer restart
I use command line in c# to bind an x509 certificate to a port as follows
netsh http add sslcert ipport=0.0.0.0:{0} certhash={1} appid={2} clientcertnegotiation=enable
It works fine. But if I ...
0
votes
1answer
209 views
netsh - The following command was not found error on Windows XP
when i run the following netsh command :
netsh http add sslcert ipport=0.0.0.0:44300 appid ={00112233-4455-6677-8899-AABBCCDDEEFF} certhash=dafebdb65ec7544218bf9a1794c6424 0207f63b9.
using ...
0
votes
0answers
57 views
Encrypted SSID in batch file
I am trying to connect myself to my wireless network with the Windows : netsh command using a batch file (just for fun).
At one point I need to specify my SSID (and probably further in the steps my ...
0
votes
1answer
91 views
netsh set ip address errors
I want to set the IP address, subnet and gateway using netsh. I have Windows XP on my computer.
When I type the command:
set address "Local Area Connection" static ipAdd sub gateway
I get this ...
0
votes
0answers
59 views
netsh command : blocking a port
i'm trying to block/allow the 80 port to block/allow internet access in browsers.
i referred to this article http://support.microsoft.com/kb/947709 about netsh commands.
my command was :
netsh ...
0
votes
0answers
54 views
netsh remote access
I have been trying to do this for hours now. I and my friend are connected to each other using a switch. He has a static ip of 192.168.0.5 and i have a static ip of 192.168.0.3.
I want to simply do a ...
0
votes
0answers
158 views
netsh http add urlacl via Group Policy (GPO)
I have self-hosted WCF application that needs to listen on a URL on port 80. In order to do this, I need to add an entry to the HTTP.sys url list for a given user.
I can do this with netsh http add ...
0
votes
0answers
167 views
Adding Windows firewall setting to the Registry - Why does it not appear?
This question is a result of my attempted work around for this issue.
The Windows Firewall Rules (Vista and up) are stored in the Registry ...
0
votes
0answers
117 views
Netsh AdvFirewall
Does anyone know if you can actually create a rule to drop specific packets not just port/ip addresses?
Could anyone show me exactly how it can be written and how I could write this in c# from a ...
0
votes
0answers
130 views
Configuring bridging VWIFI with other existing internet connection
Is it possible to bridge the Microsoft virtual wifi miniport with any other preexisting connection when connected to one or even when offline so that devices that are connected on this virtual router ...
0
votes
2answers
177 views
What does a plus sign mean in a http url? -> http://+:80 [closed]
Possible Duplicate:
What's the difference between *:80 and +:80
What does the plus sign excatly mean here:
netsh http add urlacl url=http://+:80/MyUri user=DOMAIN\user
Whats the ...
0
votes
1answer
194 views
Is there a way to change the Subnet Mask using NETSH without changing the IP Address?
Our company is planning on switching to a new subnet in the near future to make more room on the network. I thought that the transition might go smoother if we had a batch file that everyone could run ...
0
votes
0answers
74 views
Adding a port range to windows firewall rules for server 03 R2 and 08
I've got to add a range of 100 ports to the windows firewall rules for server 03 R2 and 08. I've already done this on 08 R2 using netsh but the same commands won't work for 08 standard and 03 R2. ...
0
votes
0answers
35 views
Is there a way to negate gateway metric while calculating the total interface metric of a network adapter?
If we use netsh interface ip show address it show this information below
On using netstat -r we get "gateway metric +interface metric" .. Is there a way to negate the Gateway metric value such ...
0
votes
0answers
91 views
Connect Failure : Maximum PDP context activation limit reached — for mobile connection using command window
here is the command im using on the command window..
netsh mbn connect interface="Mobile Broadband Connection" conmode=name name=Mobile
does not happen always .. but is there a way to stop it from ...
0
votes
0answers
356 views
netsh dump command on Windows 7 [closed]
When i do a netsh dump >c:\temp.netsh under the IP interface i have this entry
# ----------------------------------
# Interface IP Configuration
# ----------------------------------
pushd ...
0
votes
1answer
173 views
netsh change adapter to dhcp
I'm trying to write a few short scripts with netsh. One to change an adapter to static addressing and one to change the same adapter back to dhcp.
I can get the adapter set with all of the correct ...
0
votes
1answer
339 views
How to change IP address from cmd in window
Below I specify the command to change IP from command prompt
netsh interface ip set address name="Local Area Connection" static 192.168.1.5 255.255.255.0 192.168.1.1
But its gives message like
...
0
votes
1answer
770 views
Batch File issue, recieving “The Filename, Directory Name, Or Volume Label Syntax Is Incorrect”
I'm recieving the following error when I run my batch file
"The Filename, Directory Name, Or Volume Label Syntax Is Incorrect"
My batch file runs fine, but this error pops up 25 times and then ...
0
votes
2answers
1k views
Use netsh advfirewall to Add windows 7 firewall exception
Hi
I am adding a firewall exception to Windows 7 using netsh.
The simple rule i am adding is:
netsh advfirewall firewall add rule name = "The Test App3" dir = in action = allow description = "Smart ...
0
votes
1answer
364 views
Can't configure HTTP.SYS to allow SSL trafic (netsh.exe)
I’m running self-hosting service and when I try to configure HTTP.SYS to allow SSL traffic:
Netsh http add sslcert 0.0.0.0:8000
ba616b762ba67f30d62a94c59febf34bbf3089a9
...