Nothing too surprising there, really. Hackers know Windows often as well or better than sysadmins. But yeah, why do anything on the real computer if doing it in a VM gets you all the way there then lets you clean up in one fell swoop at the end.
VMware installed on my systems keeps Hyper-V from doing anything (they can't coexist). Plus I run a deny-by-default firewall and a number of other measures that would facilitate my knowing about someone trying to hack in.
-Noel
Author of the "How to Configure the 'To Work' Options" series of Windows books. Not feeling enough love to do one for Windows 10.
Post by atomicstryker on Aug 24, 2016 15:02:48 GMT -6
Reporting back once more. Works fine for my anniversary windows(es), i removed the firewall and windows update disabling things, though. One bug for you: The reduced icon size causes a bug with task bar icons where they display in a wrong location (somewhat to the left) until clicked, then they snap into place. Might need a certain number of icons to trigger. Might only happen under certain resolutions.
EDIT: I mean the small icons in the bottom right corner, next to the system tray icons
Last Edit: Aug 24, 2016 15:04:30 GMT -6 by atomicstryker
Hello NoelC, first of all I have to say, that your retweaker-script really is an nice piece of work. Very useful!
Unfortunately, unlike atomicstryker, some parts of the script are not working anymore on anniversary update for me :-((( I'm using the german version of windows, so I had to change the values "Administrators" to the german equal "Administratoren" since I read that these useraccounts are language dependant.
But changing the file- and registry-ownership using "setacl -setowner" in your script does not work for unknown reason?!? Changing the ownership with explorer does work.
I'm not an expert in scripting at all, but I'm trying to learn by doing ;-) Hopefully someone can help with this setacl-issue...
I've heard once before that someone saw the tray icons change size though I can't reproduce it. I keep my Taskbar on top, so maybe that masks the problem.
Matt, I'm not sure what could be wrong with setacl, except maybe an incompatibility between the setacl included with the package and the latest Win 10... Thing is, I don't see the problem here, which implies no compatibility issue. When you ran the script, did you run it elevated (goes without saying, but I thought I'd ask).
-Noel
Author of the "How to Configure the 'To Work' Options" series of Windows books. Not feeling enough love to do one for Windows 10.
D:\>SetACL -ot "file" -on "d:\TEST" -actn setowner -ownr "n:Administratoren" Retrieving the remote path for mapped drive L<\TEST> failed with: Das Netzwerk ist nicht vorhanden oder wurde nicht gestartet. ERROR while processing command line: object (name, type): d:\TEST could not be set!
The german part means: "network is not present or was not startet"
Why does setacl look for a network drive? It is a local drive! I'm not getting it...
OK, I found the solution with an excessive use of google:
The windows service "WebClient" must be running for setacl.exe to work properly! Found this in some old forum thread. Nothing about this on Helge Kleins page...
I have a suggestion: Instead of altering file and registry permissions you might try to use PSEXEC to run the retweaker-script with nt-authority/system-rights?
Thanks, I did not know about that dependency. Seems like a better SetACL type tool is what's needed.
Running the script as SYSTEM is a possible solution, but I've never liked the idea that someone who is in the Administrators group should not actually have all the permissions needed to do anything they want (remember, I never enable UAC), so I just don't think of going that way.
-Noel
Author of the "How to Configure the 'To Work' Options" series of Windows books. Not feeling enough love to do one for Windows 10.
Post by Locutus deBorg on Sept 2, 2016 13:04:23 GMT -6
here's the win 7 webclient service description:
> Enables Windows-based programs to create, access, and modify Internet-based files. If this service is stopped, these functions will not be available. If this service is disabled, any services that explicitly depend on it will fail to start.
what's webclient got to do with the local file system !? since when are my local files "Internet-based files: !?
oh that's right Windows is IE and IE is Windows
more proof of unnecessary IE integration having its claws into the system where they don't belong
same goes with EFS (encrypting file system) remove / uninstall all network adapters and networking components then BOOM! you are locked out of all EFS files and even the recovery agent can't get them back
I find the lack of configuration options disturbing !
I felt a great disturbance in the force.. as if millions of win 7 systems suddenly cried out in terror.
Post by atomicstryker on Sept 8, 2016 11:47:20 GMT -6
It happens fairly reliably even under "normal" Full HD resolution. I remembered to take a screencap:
Clicking on one snaps them all back into proper alignment. I've disabled the undisableable language selection thing with the little trick that google spits out.
For what it's worth I've been seeing a variant of that icon resizing problem from time to time on systems going back as far as Windows 7. It's almost certainly triggered by the metrics I set. I'll need to experiment with that further. Thanks.
-Noel
Author of the "How to Configure the 'To Work' Options" series of Windows books. Not feeling enough love to do one for Windows 10.
Post by atomicstryker on Sept 11, 2016 14:49:56 GMT -6
So i looked up the documentation for the buttons, to find the defaults especially, and found you actually increased 2 values, probably by mistake.
SmCaptionHeight and SmCaptionWidth are set to 255 in your batch, with 225 being the defaults. I've used the defaults, also reset IconSpacing and IconVerticalSpacing (as those never bothered me and might be the bug cause). Bug seems to be gone for now. Here's my 4 changed values and the documentation i added:
PaddedBorderWidth is not documented in the technet article
:: width of the borders around all the windows with borders that can be sized, default -15, range 0 to -750 REG ADD "HKEY_CURRENT_USER\Control Panel\Desktop\WindowMetrics" /f /v "BorderWidth" /t REG_SZ /d "0" >nul :: Specifies the height of caption buttons. Default -270 REG ADD "HKEY_CURRENT_USER\Control Panel\Desktop\WindowMetrics" /f /v "CaptionHeight" /t REG_SZ /d "-255" >nul :: Specifies the width of caption buttons. Default -270 REG ADD "HKEY_CURRENT_USER\Control Panel\Desktop\WindowMetrics" /f /v "CaptionWidth" /t REG_SZ /d "-225" >nul :: Desktop Icon spacing, default -1125, range -480 to -2730 REG ADD "HKEY_CURRENT_USER\Control Panel\Desktop\WindowMetrics" /f /v "IconSpacing" /t REG_SZ /d "-1125" >nul :: Desktop Icon spacing, default -1125, range -480 to -2730 REG ADD "HKEY_CURRENT_USER\Control Panel\Desktop\WindowMetrics" /f /v "IconVerticalSpacing" /t REG_SZ /d "-1125" >nul :: Height of menu bars, default -270 REG ADD "HKEY_CURRENT_USER\Control Panel\Desktop\WindowMetrics" /f /v "MenuHeight" /t REG_SZ /d "-225" >nul :: Width of menu bar buttons, default -270 REG ADD "HKEY_CURRENT_USER\Control Panel\Desktop\WindowMetrics" /f /v "MenuWidth" /t REG_SZ /d "-225" >nul
REG ADD "HKEY_CURRENT_USER\Control Panel\Desktop\WindowMetrics" /f /v "PaddedBorderWidth" /t REG_SZ /d "1" >nul :: Specifies the height of a standard horizontal scroll bar. Default -240 REG ADD "HKEY_CURRENT_USER\Control Panel\Desktop\WindowMetrics" /f /v "ScrollHeight" /t REG_SZ /d "-225" >nul :: Specifies the width of a standard horizontal scroll bar. Default -240 REG ADD "HKEY_CURRENT_USER\Control Panel\Desktop\WindowMetrics" /f /v "ScrollWidth" /t REG_SZ /d "-225" >nul :: Specifies the height of small captions. Default -225 REG ADD "HKEY_CURRENT_USER\Control Panel\Desktop\WindowMetrics" /f /v "SmCaptionHeight" /t REG_SZ /d "-225" >nul :: Specifies the width of small caption buttons. Default -225 REG ADD "HKEY_CURRENT_USER\Control Panel\Desktop\WindowMetrics" /f /v "SmCaptionWidth" /t REG_SZ /d "-225" >nul
Last Edit: Sept 11, 2016 14:51:07 GMT -6 by atomicstryker
Bug is unfortunately still present. I think in the future i'll just disable this tweak entirely, as no option seems to be safe (WINdows...)
I'm not sure that the values you showed earlier are the defaults either. Below is what I'm using. The values were automatically set by Windows by changing the font sizes of the two titlebar types in Control Panel -> Display:
By changing the titlebar (Caption) font from 9pt to 10pt, the caption was automatically resized from the default size of 330tw (22px) to 285tw (19px). I also changed the palette title (SmCaption) font from 9pt to 8pt, which dropped its size from the default of 330tw (22px) to 225tw (15px). All the other values are at the Windows 10 defaults—compared on a couple PCs. Again, these changes were made via the Display Control Panel applet, and I am having no icon sizing issues. Might be worth giving it a try?
Microsoft, is Windows 10 the best you could do? Really? After promising to listen to our feedback, what a letdown!
Noel, Any chance you make a version of your script that runs as a SYSTEM intead of Administrator? Lately on a new install it brakes the start menu and there is e bunch of DCOM errors in the event viewer all pointing to a wrong permissions(had to reinstall the WINDOWS several times with no luck) Reason i'm asking is because i'm not that tech-savvy just a follower of your great work.Thank you !!!!!
If you're running it on a Win 10 pre-release, you're probably going to be out of luck. I may install a pre-release right before the "Creator" update actually releases, and I *may* try to update this script to make it work again, but to be brutally honest I've lost interest in trying to keep up with Microsoft's moves.
I have chosen not to put Win 10 on any of my hardware systems - I only run it in a VM and I have no near term plans to change that.
It's just not worth my time any more to try to make Windows 10 pre-releases - which are moving farther and farther from being a controllable, rational system - into something useful. Maybe after the release, or maybe after the next Current Branch for Business I'll try again.
Post by Stewart Daniels on Jan 17, 2017 0:43:56 GMT -6
Hello, I tried your tweaker (Salivating over having my CPU run at 5% or less when idle), in Win 7, I idled at 0%. However, during installation, I received many prompts in red typeface about errors due to packages that weren't installed. Upon restart, I had no network capabilities despite network configuration stating wireless adapter is working. Windows appeared to be missing files after the tweak.
If need be, I will duplicate, and post my error messages to you for your perusal. I find the idea of this tweaker wonderful, as I despise what Cortana represents, and all the chatter apps I don't use create in the background. I came from Win 7, and updated Windows manually
I have no true technical experience, and am sorry for not being able to put into technical terms what I experience. I would love to be rid of Cortana, and her friends. Help me Obi-Wan, you're my only hope. I see everyone else is enjoying the benefits, and I would gladly let my new machine participate into taking our OS' back from Microsoft. Thank You.
I'm sorry that it didn't run through successfully. For you. I retained networking afterward, though I personally don't use wifi with the system on which I test. I also always run everything with UAC all the way disabled.
Have you tried running it several times? It's possible timing may matter.
anymore updates for this? i love how i can remove every app including cortana, edge, feedback ect. i was wondering about your privacy settings, do they completely disable ALL the spying? or do i have to also use another third party program like "do not spy", "o&o shut up 10", "destroy windows 10 spying" or others of this type? if so, which do recommend to be a complete, or alt least, the most comprehensive to block all windows spying? thank you for your time in making this. it is much appreciated.
The Windows Firewall service has to be started in addition to Windows Update service in order to successfully get through a Windows Update. Windows Firewall doesn't have to be configured to do anything, and in my case I've deleted all the rules as well as setting it to Disabled. Apparently the Windows Update process just has to see it start. I have heard that there are secret rules put in place, but I'm not able to see any additional communications as a result of starting it with it set the way I have described.
I have just updated the script at the link in the first post. I have had it working with Windows 10 Creator's Edition for a week or to, but now version 1.16 no longer disables the wlansvc. I will consider moving that to a separate question in a future version. My apologies to those who have had their wireless networking interrupted.
I have several measures in place beyond those in this script to reducing spying, including blacklisting a number of Microsoft's telemetry servers from having their names resolved by DNS and employment of a 3rd party firewall package (Sphinx). And yes, I have also run O&O ShutUp10. More layers is better w/regard to security and privacy.
I've updated the script at the original link in this thread to 1.20 with some additional tweaks:
- The Windows Error Reporting Service is now disabled. - The AppReadiness service is disabled, so that the Apps won't show back up after a reboot. - The default open-to location is now "This PC" after the Abstract Namespace Removal step is done. - The Data Usage Monitor Service (DusmSvc) is now disabled. - Dates are always shown as "Sun, April 30, 2017, 4:45:08 PM", not "3 minutes ago". - An error message is averted if Cortana has already been removed.
- The WindowMetrics have been changed so as not to mess up the tray icon size.
I've got it so it will settle to an idle desktop with 74 processes running (10 of which I've added).
I'll need to experiment to see if I can achieve the window chrome spacing I want (e.g., smaller title bar size) yet still keep the system tray icons large. Thanks for the observation, condor.
<Rick> Good video. It's almost hard to believe that at one time Windows 98 was the resource hog, but even then, it still ran circles around what Windows 10 can do on today's modern hardware and look a heck of alot better doing it.
May 25, 2021 22:55:12 GMT -6
<Rick> As stated elsewhere, So much for the launch of Windows 11, "The Great Crash." Myself, I had a hard time getting into the site listed above, when I did get in, the video was partly done and then it crashed. There has been many other reports of crashing.
Jun 24, 2021 9:52:33 GMT -6
*
<Rick> I see Microsoft has been very quick to pull down reports of site crashing regarding the Launch of Windows 11 on the Microsoft Insiders forum.
Jun 24, 2021 9:57:31 GMT -6
*
<Rick> The rebroadcast is working okay.
Jun 24, 2021 11:00:25 GMT -6
<Rick> With reports of people being able to install the dev-edition of Windows 11 on machines not meeting spec, I thought I would give it a what-the-heck try. Lucky me, I'm caught in the downloading, doesn't meet spec, clearing, re-downloading loop on my machine!
Jul 2, 2021 7:08:46 GMT -6
<Rick> I've recently purchased a license for ArcaOS from www.arcanoae.com/ to play with. First impressions, it's still OS/2, but it now has a Linux twist to it.
Jul 2, 2021 7:32:53 GMT -6
*
<dozrguy> laptop shit out and am stuck buying a new one. os win11 as fucked as win10 was?
Oct 2, 2021 12:56:10 GMT -6
<Rick> Let's see ..., my impression of Windows 11 is that it is a spruced up version of Windows 10 requiring a 64-bit processor plus a piece of security hardware that is less than 4 years old in order for it to run.
Oct 4, 2021 18:25:49 GMT -6
*
<Rick> On the plus side, Microsoft is supposed to be supporting Windows 10 for some time to come for those of us still using systems with I7 or older processors.
Oct 4, 2021 18:44:35 GMT -6
*
<dozrguy> i tried installing win10 om the 'shitout' pc this morning usung media creation. EPIC FAIL! went into an endless bootloop. win7 reinstalled just fine
Oct 21, 2021 11:23:38 GMT -6
<dozrguy> STILL so much bullshit and so little time for the kiddie ideas from the hill. My new laptop (MSI GE 11-UH461) would be an awesome "10" machine but because of Winblows I can only give it a "2"......wasted $3500
Oct 27, 2021 9:36:47 GMT -6
<Rick> Hello. Just checking in.
Mar 17, 2022 10:46:54 GMT -6
<isidroco> Each new w10 update adds >100000 useless files to \Windows\Servicing\LCU\Package_for_RollupFix... folders. Even in a SSD takes time to delete that stuff. In each version they manage to worsen stuff.
Mar 27, 2022 16:14:51 GMT -6
*
<dozerguy> still traffic here?
Oct 9, 2022 17:32:44 GMT -6
<Rick> No, there does not seem to be very much traffic these days. I still check in from time to time.
Oct 9, 2022 20:08:58 GMT -6