Configures the computer to receive remote commands.
2 Pack Wireless Controllers for PS4 and Joystick for Playstation 4 Control - YU33 for DS4 Remote Joystick Support Playstation 4,Pro/Slim PS4,PC,PS TVs,Smart TV(Black+Red Diamond) 4.0 out of 5 stars 1,814. From the launch screen of PS Remote Play on your device, go to Settings and then select Video Quality for Remote Play. Set Resolution to Standard or Low, and Frame Rate to Standard. Blank screen on PC when setting up PS Remote Play? You may need to install the latest graphics driver. Wireless Controllers for PS4, Wireless Remote Control for Sony Playstation 4, YU33 PS4 Joystick Gamepad for PS4 Controller with Charging Cable, 3rd-Party, 2021,Steel Black 4.4 out of 5 stars 424 $27.99 $ 27. From the home screen, select Settings System Remote Play, and then turn on Enable Remote Play. To start Remote Play while your PS5 console is in rest mode, select Settings System Power Saving Features Available in Rest Mode. Then turn on Stay Connected to the Internet and Enable Turning on PS5 from Network.
Syntax
Description
The Enable-PSRemoting
cmdlet configures the computer to receive PowerShell remote commands thatare sent by using the WS-Management technology. WS-Management based PowerShell remoting is currentlysupported only on Windows platform.
PowerShell remoting is enabled by default on Windows Server platforms. You can useEnable-PSRemoting
to enable PowerShell remoting on other supported versions of Windows and tore-enable remoting if it becomes disabled.
You have to run this command only one time on each computer that will receive commands. You do nothave to run it on computers that only send commands. Because the configuration starts listeners toaccept remote connections, it is prudent to run it only where it is needed.
Enabling PowerShell remoting on client versions of Windows when the computer is on a public networkis normally disallowed, but you can skip this restriction by using the SkipNetworkProfileCheckparameter. For more information, see the description of the SkipNetworkProfileCheck parameter.
Multiple PowerShell installations can exist side-by-side on a single computer. RunningEnable-PSRemoting
will configure a remoting endpoint for the specific installation version thatyou are running the cmdlet in. So if you run Enable-PSRemoting
while running PowerShell 6.2, aremoting endpoint will be configured that runs PowerShell 6.2. If you run Enable-PSRemoting
whilerunning PowerShell 7-preview, a remoting endpoint will be configured that runs PowerShell 7-preview.
Enable-PSRemoting
creates two remoting endpoint configurations as needed. If the endpointconfigurations already exist, then they are simply ensured to be enabled. The created configurationsare identical but have different names. One will have a simple name corresponding to the PowerShellversion that hosts the session. The other configuration name contains more detailed informationabout the PowerShell version which hosts the session. For example, when running Enable-PSRemoting
in PowerShell 6.2, you will get two configured endpoints named PowerShell.6, PowerShell.6.2.2.This allows you to create a connection to the latest PowerShell 6 host version by using the simplename PowerShell.6. Or you can connect to a specific PowerShell host version by using the longername PowerShell.6.2.2.
To use the newly enabled remoting endpoints, you must specify them by name with theConfigurationName parameter when creating a remote connection using theInvoke-Command
,New-PSSession
,Enter-PSSession
cmdlets. For more information, see Example 4.
The Enable-PSRemoting
cmdlet performs the following operations:
- Runs the Set-WSManQuickConfig cmdlet,which performs the following tasks:
- Starts the WinRM service.
- Sets the startup type on the WinRM service to Automatic.
- Creates a listener to accept requests on any IP address.
- Enables a firewall exception for WS-Management communications.
- Creates the simple and long name session endpoint configurations if needed.
- Enables all session configurations.
- Changes the security descriptor of all session configurations to allow remote access.
- Restarts the WinRM service to make the preceding changes effective.
To run this cmdlet on the Windows platform, start PowerShell by using the Run as administratoroption. This cmdlet is not available on Linux or MacOS versions of PowerShell.
Caution
This cmdlet does not affect remote endpoint configurations created by Windows PowerShell.It only affects endpoints created with PowerShell version 6 and greater. To enable anddisable PowerShell remoting endpoints that are hosted by Windows PowerShell, run theEnable-PSRemoting
cmdlet from within a Windows PowerShell session.
Examples
Example 1: Configure a computer to receive remote commands
This command configures the computer to receive remote commands.
Example 2: Configure a computer to receive remote commands without a confirmation prompt
This command configures the computer to receive remote commands.The Force parameter suppresses the user prompts.
Example 3: Allow remote access on clients
This example shows how to allow remote access from public networks on client versions of the Windowsoperating system. The name of the firewall rule can be different for different versions of Windows.Use Get-NetFirewallRule
to see a list of rules. Before enabling the firewall rule, view thesecurity settings in the rule to verify that the configuration is appropriate for your environment.
By default, Enable-PSRemoting
creates network rules that allow remote access from private anddomain networks. The command uses the SkipNetworkProfileCheck parameter to allow remote accessfrom public networks in the same local subnet. The command specifies the Force parameter tosuppress confirmation messages.
The SkipNetworkProfileCheck parameter does not affect server versions of the Windows operatingsystem, which allow remote access from public networks in the same local subnet by default.
The Set-NetFirewallRule
cmdlet in the NetSecurity module adds a firewall rule that allowsremote access from public networks from any remote location. This includes locations in differentsubnets.
Example 4: Create a remote session to the newly enabled endpoint configuration
This example shows how to enable PowerShell remoting on a computer, find the configured endpointnames, and create a remote session to one of the endpoints.
The first command enables PowerShell remoting on the computer.
The second command lists the endpoint configurations.
/cdn.vox-cdn.com/uploads/chorus_image/image/47385076/22000249396_520089b537_o.0.0.png)
The third command creates a remote PowerShell session to the same machine, specifying thePowerShell.6 endpoint by name. The remote session will be hosted with the latest PowerShell 6version (6.2.2).
The last command accesses the $PSVersionTable
variable in the remote session to display thePowerShell version that is hosting the session.
Note
The name of the firewall rule can be different depending on the version of Windows. Use theGet-NetFirewallRule
cmdlet to list the names of the rules on your system.
Parameters
Prompts you for confirmation before running the cmdlet.
Type: | SwitchParameter |
Aliases: | cf |
Position: | Named |
Default value: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
Forces the command to run without asking for user confirmation.
Type: | SwitchParameter |
Position: | Named |
Default value: | None |
Accept pipeline input: | False |
Accept wildcard characters: | False |
Indicates that this cmdlet enables remoting on client versions of the Windows operating system whenthe computer is on a public network. This parameter enables a firewall rule for public networks thatallows remote access only from computers in the same local subnet.
This parameter does not affect server versions of the Windows operating system, which, by default,have a local subnet firewall rule for public networks. If the local subnet firewall rule is disabledon a server version, Enable-PSRemoting
re-enables it, regardless of the value of this parameter.
To remove the local subnet restriction and enable remote access from all locations on publicnetworks, use the Set-NetFirewallRule
cmdlet in the NetSecurity module.

This parameter was introduced in PowerShell 3.0.
Type: | SwitchParameter |
Position: | Named |
Default value: | None |
Accept pipeline input: | False |
Accept wildcard characters: | False |
Shows what would happen if the cmdlet runs.The cmdlet is not run.
Type: | SwitchParameter |
Aliases: | wi |
Position: | Named |
Default value: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
Inputs
None
You cannot pipe input to this cmdlet.
Outputs
This cmdlet returns strings that describe its results.
Notes
This cmdlet is only available on Windows platforms.
On server versions of the Windows operating system, Enable-PSRemoting
creates firewall rules forprivate and domain networks that allow remote access, and creates a firewall rule for publicnetworks that allows remote access only from computers in the same local subnet.
On client versions of the Windows operating system, Enable-PSRemoting
creates firewall rules forprivate and domain networks that allow unrestricted remote access. To create a firewall rule forpublic networks that allows remote access from the same local subnet, use theSkipNetworkProfileCheck parameter.
On client or server versions of the Windows operating system, to create a firewall rule for publicnetworks that removes the local subnet restriction and allows remote access , use theSet-NetFirewallRule
cmdlet in the NetSecurity module to run the following command:Set-NetFirewallRule -Name 'WINRM-HTTP-In-TCP-PUBLIC' -RemoteAddress Any
Enable-PSRemoting
enables all session configurations by setting the value of the Enabledproperty of all session configurations to $True
.

Enable-PSRemoting
removes the Deny_All and Network_Deny_All settings. This provides remoteaccess to session configurations that were reserved for local use.
Related Links
Some PS4 users have reported to us that they need help in fixing Remote Play feature on their console that won’t connect to their PC. In case you did not know, you can actually play your favorite PS4 game on either a smartphone or computer even when you’re not in front of your console. All you have to do is to set up Remote Play on your phone or computer.
If you encounter connection issues or Remote Play errors during setup, or after using it for some time, this article should help.
Things you need for PS4 Remote Play
If you plan on playing away from your PS4, you can make use of its Remote Play feature. Below are the things that you should have to successfully do that:
- Updated PS4 console.
- Internet connected computer.
- Good working PS4 DUALSHOCK wireless controller
- USB cable to connect the controller to your computer. Or, a compatible wireless adapter to allow PS4 wireless connection.
- PlayStation Network account.
- At least 15Mbps download and upload internet connection speeds (for both the PC and PS4)
Causes why your PS4 Remote Play won’t connect
There are several possible reasons why PS4 Remote Play stops or won’t connect. Mostly, the issue is network setup related so it’s important that you make sure to check the status of your own local network ahead of time.
At other times, PS4 Remote Play may encounter connection issues or errors due to problems with the PlayStation Network itself.
Ps Remote Play App
For first time users, some may find out that they are unable to use PS4 Remote Play due to their computer’s security software.
Below are some of the common causes for PS4 Remote Play issues.
Internet connection is slow or intermittent.
In order to avoid having latency or lag when using Remote Play, you want to make sure that you have a fast broadband connection. Sony recommends that your PS4 has a minimum of 15Mbps. Anything slower than that can be problematic although I’ve personally been able to use Remote Play normally even though my PS4 speed test result shows that it’s only getting less than 6Mbps of upload speed.
For best results though, try to only use Remote Play when you have a fast enough connection.
PS4 software is outdated.

Most PS4 games and features that uses online functionality usually won’t work when the console’s software is outdated. Make sure that you manually check for software updates if you encounter Remote Play errors.
NAT type is strict or restrictive.
Some users may encounter “A connection to the server could not be established” error due to NAT type issues on the PS4. You should strive to have NAT Type 1(open) on your console although NAT Type 2 (moderate) is also okay. If your PS4 has NAT type 3 (strict), you will not be able to play with others online, talk via voice chat, or run Remote Play on your computer.
Random console or computer OS bug.
Sometimes, electronic devices may develop flukes. Temporary bugs are usually fixed by simply rebooting the device so make sure to restart your PC and PS4.
Local network issue.
Ps Remote Play Specs Windows
Issues with your local networking devices can cause Remote Play to cut off or not load. Make sure that your home network is fast enough and does not disconnect frequently. Intermittent connection issues can cause connection time outs, which can make Remote Play virtually unplayable.
Security software blocking the connection.
If you’re getting a 88010E0F error when setting up Remote Play for the first time, it’s more likely an antivirus or firewall issue. You can try to disable your antivirus or firewall temporarily to check if that’s the case.
Make sure to turn your security software back on after testing.
PlayStation Network is down.
Remote Play may not work if there’s an issue with its servers. You can check PlayStation Network status if you have trouble connecting with Remote Play.
What to do if PS4 Remote Play won’t connect
If you’re encountering an error with Remote Play, or if the feature suddenly stops working for no apparent reason, the following solutions should help.
- Check the PlayStation Network status.
Before you troubleshoot your PC or PS4, make sure that you visit the PlayStation Network status page to see if there’s any issue from Sony’s side.
- Check your internet connection speed.
Slow or intermittent connection speed can significantly impact how Remote Play works. Make sure to run a connection speed test on your PS4 first to see if it’s getting the minimum 15Mbps download and upload speeds.
Your computer should also meet with the minimum speed requirements.
To check for a possible intermittent connection issue, you’ll need to observe your network. Using your other devices (smartphones or computers), try to see if the connection keeps dropping for a few hours. If internet connection is unstable or constantly disconnecting, you’ll need to fix this issue first in order to reliably use Remote Play. - Use wired connection.
If you are using wireless or wifi connection with your PS4, it’s possible that there may be wifi signal interference that causes the connection to drop. Try using an ethernet connection from the router to your PS4 before attempting to use Remote Play again.
If a wired connection is not possible, move the PS4 closer to the router so as to ensure that it gets a good wifi signal. - Update your PS4 software.
One of the simplest ways to keep bugs away is to ensure that your PS4 runs the most recent software. To manually check for software updates:
-Go to your PS4 Home screen.
-Go to the Settings Menu.
-Select System Software Update. - Restart Remote Play on your PC.
If Remote Play still won’t connect, make sure that you restart it. On your computer, open the Task Manager (CTRL+ALT+DEL), select PS4 Remote Play under the Processes tab, then hit the End Task button at the lower right.
- Reboot the computer.
If restarting the Remote Play application will not fix the error or connection issue, the next good thing that you can do is to restart your computer. This ensures that you address possible temporary bugs with your PC that might be interfering with Remote Play.
- Power cycle your local networking devices.
While your PC is restarting, take the time to also refresh your network connection. To do that, you want to unplug your modem and/or router from the power outlet or strip for about 30 seconds.
- Disable your antivirus and/or firewall.
For some, disabling their security software like antivirus or similar fixes Remote Play issues. If your computer’s firewall is active, you should consider turning off that too for testing purposes. Or, you can make an exception in your firewall settings to allow Remote Play to establish a connection. Use Google to know how to do this suggestion.
- Delete and reinstall Remote Play.
If all the possible causes have been checked and not one of the solutions above has helped so far, consider deleting and reinstalling Remote Play.
Suggested readings:
Ps Remote Play Download
Visit our TheDroidGuy Youtube Channel for more troubleshooting videos.
