Hi HP8000Elite,
No, this is
very unlikely to be a BIOS issue. If your wife’s PC has working Ethernet/Internet access, the BIOS has done its part. This looks much more like a
Windows networking / credentials / MMC services console / firewall residue problem.
Also,
Error 1722 = “The RPC server is unavailable.” If
services.msc mentions an old computer name, it suggests the Services console may be trying to connect to a
remote computer that no longer exists, rather than the local machine.
1. Do not delete more registry entries
Please stop manually deleting registry references for now. Some old computer-name entries can be harmless, but removing the wrong ones can make networking or Windows services worse.
Before doing the next steps:
- Create a restore point.
- Back up anything important from your wife’s PC.
- Then continue below.
2. Force Services to open the local computer
On your wife’s PC:
- Press
Win + R.
- Type this exactly:
services.msc /computer=localhost
- Press Enter.
If that works, the Services console was probably remembering or targeting the old PC name.
Also try:
services.msc /computer=127.0.0.1
Expected result: Services should open for the local computer.
3. Clear the cached Services MMC console settings
On your wife’s PC:
- Close all Services / Computer Management windows.
- Press
Win + R.
- Type:
%appdata%\Microsoft\MMC
- Press Enter.
- Look for a file named something like:
services
or:
services.msc
- Rename it to:
services.old
- Try opening Services again with:
services.msc
This does
not delete Windows services. It only resets the saved console view/settings for your user profile.
4. Repair Windows properly on your wife’s PC
Since
sfc /scannow found corruption, run DISM next.
Open
Command Prompt as Administrator and run:
DISM /Online /Cleanup-Image /RestoreHealth
When that completes, run:
sfc /scannow
Then restart the PC.
Expected result: DISM repairs the Windows component store, then SFC has a better chance of fixing remaining system files.
5. Check the key services using PowerShell instead of Services.msc
Because
services.msc is giving Error 1722, use PowerShell for now.
On your wife’s PC:
- Right-click Start.
- Choose Terminal (Admin) or Windows PowerShell (Admin).
- Run:
Get-Service RpcSs,DcomLaunch,RpcEptMapper,FDResPub,fdPHost,SSDPSRV,upnphost,LanmanWorkstation,LanmanServer
The most important ones are:
Code:
RpcSs
DcomLaunch
RpcEptMapper
FDResPub
fdPHost
LanmanWorkstation
LanmanServer
If
RpcSs,
DcomLaunch, or
RpcEptMapper are not running, that would explain Error 1722.
6. Reset old network credentials on your wife’s PC
The “worked briefly then requests credentials but won’t recognise them” part is probably a
stored bad credential or the wrong username format.
On your wife’s PC:
- Open Command Prompt.
- Run:
net use * /delete
- Open Credential Manager:
control keymgr.dll
- Remove saved Windows credentials for your PC name, your PC IP address, or the old phantom PC name.
- Restart the wife’s PC.
Then try again using the IP address of your PC:
\\YOUR-PC-IP\Trailcam
Example:
\\192.168.1.20\Trailcam
7. Use the correct credential format
If your PC uses a
Microsoft account, do
not use the PIN. Windows file sharing wants the actual account password.
Try one of these formats from your wife’s PC when prompted:
YourPCName\YourUserName
or:
MicrosoftAccount\[email][email protected][/email]
If your PC uses a local account, use:
YourPCName\LocalUserName
The password must be the password for the account on
your PC, not hers.
8. Easiest fix: create a dedicated sharing account on your PC
This avoids Microsoft account/PIN confusion.
On
your PC:
- Go to
Settings > Accounts > Other users.
- Add a local user, for example:
trailcam
- Give it a normal password.
- Right-click your trailcam folder.
- Go to
Properties > Sharing > Advanced Sharing > Permissions.
- Add the
trailcam user with Read permission.
- Also check
Properties > Security and give the same user Read permission there.
Then on your wife’s PC connect using:
YourPCName\trailcam
or:
Your-PC-IP\trailcam
This is usually more reliable than trying to use Microsoft account credentials across a small home LAN.
9. Reset Windows Firewall after removing ESET
ESET may have left firewall/network filtering changes behind.
On your wife’s PC:
- Open Windows Security.
- Go to
Firewall & network protection.
- Click
Restore firewalls to default.
- Restart the PC.
- Confirm the Ethernet network is still set to Private.
- Re-enable Network discovery and File and printer sharing if Windows turned them off.
If ESET was not fully removed, use ESET’s official removal/uninstaller tool, but only after creating a restore point.
10. If router no longer appears on wife’s PC
That is usually discovery-related, not actual connectivity.
Check whether she can still reach the router by IP:
- On her PC, open Command Prompt.
- Run:
ipconfig
- Note the Default Gateway.
- In a browser, go to that gateway address, for example:
[url unfurl="true"]http://192.168.1.1[/url]
If the router opens by IP but does not appear in Network, discovery is still the issue.
11. Last resort: Network Reset on wife’s PC
Only do this if the above fails.
Warning: this removes and reinstalls network adapters and clears saved Wi-Fi/network settings.
- Go to
Settings > Network & internet > Advanced network settings.
- Select
Network reset.
- Click
Reset now.
- Restart the PC.
- Set Ethernet back to Private.
- Turn Network discovery and File and printer sharing back on.
My view
The most suspicious items are:
services.msc trying to contact the old computer name.
- Bad/stale stored credentials.
- ESET firewall/filter remnants.
- Windows corruption found by SFC.
I would fix them in this order:
- Run
services.msc /computer=localhost.
- Clear
%appdata%\Microsoft\MMC.
- Run
DISM, then sfc.
- Clear saved credentials with
net use * /delete and Credential Manager.
- Create a simple local sharing account on your PC.
- Reset Windows Firewall after ESET removal.
If you can, please post the
exact wording of the Error 1722 message, especially the old computer name it mentions.