Sounds like a different setup than what I'm using. I can perform basic operations directly from my workstation, no remote required.
I'm just going to add one more post, then bow out. This has gone quite off topic and neither side is making much progress with the other.
First, PowerShell. If you're not using it (even with Windows on your laptop), I think you should seriously take a look at it.
Consider this: 5 new employees join the company. What do you do? For me, if I didn't use PowerShell, I would do the following steps:
1. Add user into AD Users & Computers
2. Add proper groups to user based on job role and if FTP access is required
3. Log into Sharepoint and grant access based on job role
4. Wait 3 hours for AD to sync with Office 365
5. Use Office 365's web tool to apply an Exchange P2 license and select their origin country
6. <Has to be done in PS - cannot be done with a GUI> Turn on archiving for the new mailbox
7. <Has to be done in PS - cannot be done with a GUI> Apply retention policies to the mailbox
7 steps, 3 hours 15 minutes or so to go through all the GUI screens and websites.
With PowerShell?
1. Connect via SSH to PS
2. Run new user function and fill in first name, last name, domain, job role, location based out of, email domain
2 steps, 70 seconds - 60 seconds of that is waiting for AD to sync with Office 365 since the script does a forced sync.
Now imagine repeating either method for 5 users (or 50 users), which is faster?
I highly recommend moving most of your admin work to PowerShell regardless of your platform. It makes everything you do faster and easier. This was only one example of where it improved work efficiency.
Second, platform agnostic. As an admin, you shouldn't feel like you need to do work on one platform or another because there will come a time when you don't have access to it, a server is down and now what do you do?
My example: A Hyper-V system needs to be reimaged but I'm in China right now (we have many locations there). The time difference is 12 hours. It's noon on the east coast and it is midnight in China. I'm out at a bar shooting pool with expats and I get a call about a Hyper-V machine not working.
Well, I can hail a cab and ride back to the hotel where my laptop is. Or if I have everything configured around remoting with the platform being agnostic, I can whip out my phone (iPhone, Android, <insert smartphone>), connect via VPN to the location in question, SSH to the machine, run the Hyper-V scripts to restore a VM and I'm done in a few minutes. Back to relaxing.
While some companies might have people to back you up, you can't always rely on that. It's good to not worry about what computers are around you for work. Any computer device is good enough for the job. Especially if your own job is on the line when **** hits the fan.