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 answers
Related Questions in C#
- How to call a C language function from x86 assembly code?
- What does: "char *argv[]" mean?
- User input sanitization program, which takes a specific amount of arguments and passes the execution to a bash script
- How to crop a BMP image in half using C
- How can I get the difference in minutes between two dates and hours?
- Why will this code compile although it defines two variables with the same name?
- Compiling eBPF program in Docker fails due to missing '__u64' type
- Why can't I use the file pointer after the first read attempt fails?
- #include Header files in C with definition too
- OpenCV2 on CLion
- What is causing the store latency in this program?
- How to refer to the filepath of test data in test sourcecode?
- 9 Digit Addresses in Hexadecimal System in MacOS
- My server TCP doesn't receive messages from the client in C
- Printing the characters obtained from the array s using printf?
Related Questions in NETWORKING
- How to avoid duplicates with the pull-based subscribe model?
- How to simulate CSMA/CD protocol in ns3?
- Network System - Cisco Packet Tracer
- Adhoc / mesh network not working (with and without batman-adv)
- Algorithm for finding a subset of nodes in a weighted connected graph such that the distance between any pair nodes are under a postive number?
- Python Client-Server Communication with Protocol
- I registered a service in eureka which is resolving through java code. But it is not able to resolve its name when hitting through chrome or postman
- Share files from the server without data or internet usage
- Player names not synchronizing in unity Mirror Networking
- My phone can not visit the server on macos in the same local network
- Unable to ping remote websites from an ipV6 only ubuntu ec2 Instance
- Linux Networking - Routing packets from one network interface to another
- wrong output from Supernetting algorithm
- Mapping localhost port on host to docker container
- Microsoft Message Analyzer disable resolving IP address to their domain names a.k.a turn off AutoIP feature
Related Questions in ROUTER
- Hosting nextjs with nodejs as a backend locally
- next js route groups issue
- Vue router path matching behaviour
- What is vue router :matchRest(.*)* and when should I use it?
- How to set up URL redirection on D-Link router for specific domain?
- Why we say "Every Fragment-Offset except the last one, must contain a multiple of 8 bytes of data. In IPv4 header
- Angular router can't match routes after update (v14 -> v17)
- Accessing locale in nextJS 14 App Directory
- How to Integrate Contentful and Next.js App Router
- Router.Navigate from Angular Library Doesn't Work
- Nextjs issue with Server-Side Rendering
- when return chain.filter(exchange) the request is not terminated ,still running even executing all filters in Spring cloud gateway
- Routes Problem with node.js 404 not found
- in express how to execute a function (like db commit) only after successful response is sent?
- Prevent Blazor Router to found some components with @page directive
Related Questions in CONNECTIVITY
- 2D interlocking puzzle script not working
- obtaining habitat suitability layer from step selection function (iSSF) from the amt package in r
- List unreachable servers in Ansible using a reusable playbook
- Algorithm Part 1 & 2 from Princeton
- 'unable to find an inherited method for function ‘costDistance’ for signature' error while trying to do a friction weighted connectivity analysis
- Oracle issue - vendor code 17002 - network adapter could not establish connection
- Flutter : How to use connectivity_plus with go_router package
- Trouble Connecting Elasticsearch Connector to MongoDB Atlas with ServerSelectionTimeoutError
- Mindray 5150 disconnecting every some days
- Unable to Retrieve Data from Bullhorn to Power BI
- Local Flow Partitioning for Faster Edge Connectivity: implementation
- unable to connect DMS serverless to AWS lightsail?
- Why are USB connections so unreliable and sporadic?
- Repeated down times with connection timed out issue
- How to print communicatin path between same areas in brain model created with ggseg()
Related Questions in REMOTE-ADMINISTRATION
- Flask request security on ubuntu remote server
- Active Directory administrative tools - Users can't login
- Remotely manage IIS on NANO 2016 using IIS Manager
- Changing password for local admin in a workgroup remotely through powershell
- IIS Error : Remote connections are not supported
- Server 2008: Switch from Terminal Services Mode to Remote Administration
- COMException when trying to get application pools using ServerManager
- How to execute Windows commands remotely from a Linux Apache PHP server?
- Remote admin of glassfish does not work
- Why doesn't remote WMI query for Win32_LogonSession return LogonType = 2 instances?
- Can C# block internet access on a remote Windows PC
- install ".run" programs with automatic yes/ok/... option
- IIS 7 remote administration via C#
- Using Expect to administer machines via SSH, but does not complete all tasks
- GAC Comparison Tool for multiple servers?
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?
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)
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.