Using C#, is it possible to iterate over a list of remote Windows computers connected to the LAN and turn on/off internet access for specific PCs only and while the internet connectivity is provided via a router? And all that without installing any client software on the remote PCs.
Can C# block internet access on a remote Windows PC
1.4k Views Asked by Rastaman At
1
There are 1 best solutions below
Related Questions in C#
- Passing arguments to main in C using Eclipse
- kernel module does not print packet info
- error C2016 (C requires that a struct or union has at least one member) and structs typedefs
- Drawing with ncurses, sockets and fork
- How to catch delay-import dll errors (missing dll or symbol) in MinGW(-w64)?
- Configured TTL for A record(s) backing CNAME records
- Allocating memory for pointers inside structures in functions
- Finding articulation point of undirected graph by DFS
- C first fgets() is being skipped while the second runs
- C std library don't appear to be linked in object file
- gcc static library compilation
- How to do a case-insensitive string comparison?
- C programming: Create and write 2D array of files as function
- How to read a file then store to array and then print?
- Function timeouts in C and thread
Related Questions in NETWORKING
- kernel module does not print packet info
- Packet drops in multicast when multiple instance of listner are running
- Timing packets on a traffic server
- How to use Espresso Idling Resource for network calls
- Dummynet does not match on flows
- Sending a notification from OS X to iOS
- Swift ios viewDidLoad or viewDidAppear
- Update player list on all clients on new connection
- Issues regarding multiplayer networking: input
- nmap does not show all open ports
- Getting and Sending Data between a Server and Client
- Read file from local PC from network deployed app to InputStream
- Does iOS block a URL if we couldn't connect to the URL for 'n' times?
- Is Socket.Available guaranteed to throw a SocketException on disconnect?
- android out of cell service
Related Questions in ROUTER
- how to hide an id from a joomla url
- Ui-router URL changes, nested view not loading
- Npm requests stopped by home router
- How to find the network router's model programmatically
- Automatically forward ports from clients
- How to know the mount path of router on express?
- AIR server connections
- Build wifi broadcast device?
- Displaying dynamic views for multiple profiles (customers) with AngularJs
- writing koa middleware for fluxible-router (async executeAction)
- angular2 router in service?
- Wifi repeater and captive portal
- Quest for a good xen single ip routing config with port forwarding
- multiple components in the same viewports with new angular router.
- Connecting Devices to Fiddler Without Proxy Changing?
Related Questions in CONNECTIVITY
- Monitor WiFi sleep mode events
- Access internet through mobile data when wifi is connected to OBD in marshmallow
- ConnectivityManager leaking, not sure how to resolve
- How to connect to containers on docker Overlay network from an external machine
- DJI Phantom 3 standard Connectivity issue
- connectivity Error, How to minimize it. I use share-hosting for my web
- Is there a way to measure latency in iOS?
- Android 5.0 Lollipop and 4.4 KitKat ignores my WiFi network, enableNetwork() is useless
- Batch file to check the availability of a specific port of a remote server
- Is it possible for an Android app to restrict other apps to WiFi only (without root)?
- Cannot insert data into mysql database using Java (jframe)
- Retrofit + Rxjava takes long time to invoke onError when server connection failed
- Broadcastreceiver to obtain ServiceState information
- Android - public method setMobileDataEnabled in ConnectivityManager not available in SDK
- How to verify network connectivity in objective-c
Related Questions in REMOTE-ADMINISTRATION
- GAC Comparison Tool for multiple servers?
- COMException when trying to get application pools using ServerManager
- IIS Error : Remote connections are not supported
- How to execute Windows commands remotely from a Linux Apache PHP server?
- ADSI / IIS management and ASP.NET impersonation
- command line/Powershell administration of networks behind NAT
- How to admin a remote Windows Server with a command line interface?
- What are the advantages of rsh versus Perl's Expect.pm?
- Why doesn't remote WMI query for Win32_LogonSession return LogonType = 2 instances?
- Can C# block internet access on a remote Windows PC
- IIS 7 remote administration via C#
- Remotely manage IIS on NANO 2016 using IIS Manager
- Using Expect to administer machines via SSH, but does not complete all tasks
- Changing password for local admin in a workgroup remotely through powershell
- install ".run" programs with automatic yes/ok/... option
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
This answer might better be served as a comment, but it is a little long to write there.
You should look into creating a
Group Policy.This is what our local Network Administrator does.
We have hundreds of PCs out on our production floor that have to connect to our network to access data over the local server and server at our remote plants.
These PCs access our network via a Public profile, which does not have Internet access.
We also employ multiple servers (applications server, mail server, web server, sql server, etc).
When the Public account is logged in, the router denies traffic to the web server.
If a manager or supervisor needs to look up a part out on the production floor, they can log in with their account (i.e. not the Public account) and access Internet information.
Lucky for me, you did not ask HOW to do this, because I am not really sure how this is done. You only asked if it was possible.