Jump to content

R4D3

Member
  • Posts

    100
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    Germany

Everything posted by R4D3

  1. You can try, making a shortcut to: C:\Windows\System32\cmd.exe /c "net accounts /maxpwage:unlimited" give it adminrights, and place it in Autorun Folder... %APPDATA%\Microsoft\Windows\Start Menu\Programs\Startup
  2. Sorry, there is one Error in "my Fix.bat"... - Dnscache must stay at Auto - cause it is needed by WindowsStore... (error 0x80072ee7) for some Apps like ADBlock for Edge
  3. REM Reading Variable Service_nAm3s Registry Permissions FOR /F "delims=\ tokens=5" %%a in (' reg query "HKLM\SYSTEM\CurrentControlSet\Services" /s /f "C:\WINDOWS\system32\svchost.exe -k UnistackSvcGroup" ^|find "CDPUserSvc_" ') do set A1=%%a FOR /F "delims=\ tokens=5" %%a in (' reg query "HKLM\SYSTEM\CurrentControlSet\Services" /s /f "C:\WINDOWS\system32\svchost.exe -k DevicesFlow" ^|find "DevicesFlowUserSvc_" ') do set A2=%%a FOR /F "delims=\ tokens=5" %%a in (' reg query "HKLM\SYSTEM\CurrentControlSet\Services" /s /f "C:\WINDOWS\system32\svchost.exe -k UnistackSvcGroup" ^|find "MessagingService_" ') do set A3=%%a FOR /F "delims=\ tokens=5" %%a in (' reg query "HKLM\SYSTEM\CurrentControlSet\Services" /s /f "C:\WINDOWS\system32\svchost.exe -k UnistackSvcGroup" ^|find "OneSyncSvc_" ') do set A4=%%a FOR /F "delims=\ tokens=5" %%a in (' reg query "HKLM\SYSTEM\CurrentControlSet\Services" /s /f "C:\WINDOWS\system32\svchost.exe -k UnistackSvcGroup" ^|find "PimIndexMaintenanceSvc_" ') do set A5=%%a FOR /F "delims=\ tokens=5" %%a in (' reg query "HKLM\SYSTEM\CurrentControlSet\Services" /s /f "C:\WINDOWS\system32\svchost.exe -k UnistackSvcGroup" ^|find "UnistoreSvc_" ') do set A6=%%a FOR /F "delims=\ tokens=5" %%a in (' reg query "HKLM\SYSTEM\CurrentControlSet\Services" /s /f "C:\WINDOWS\system32\svchost.exe -k UnistackSvcGroup" ^|find "UserDataSvc_" ') do set A7=%%a FOR /F "delims=\ tokens=5" %%a in (' reg query "HKLM\SYSTEM\CurrentControlSet\Services" /s /f "C:\WINDOWS\system32\svchost.exe -k UnistackSvcGroup" ^|find "WpnUserService_" ') do set A8=%%a REM II Output the Variable and load Powershellscript to get Full Adminrights Set Dienst=HKLM:\SYSTEM\CurrentControlSet\Services\%A1% powershell.exe -file "%CD%\PhoenixCall.ps1" Set Dienst=HKLM:\SYSTEM\CurrentControlSet\Services\%A2% powershell.exe -file "%CD%\PhoenixCall.ps1" Set Dienst=HKLM:\SYSTEM\CurrentControlSet\Services\%A3% powershell.exe -file "%CD%\PhoenixCall.ps1" Set Dienst=HKLM:\SYSTEM\CurrentControlSet\Services\%A4% powershell.exe -file "%CD%\PhoenixCall.ps1" Set Dienst=HKLM:\SYSTEM\CurrentControlSet\Services\%A5% powershell.exe -file "%CD%\PhoenixCall.ps1" Set Dienst=HKLM:\SYSTEM\CurrentControlSet\Services\%A6% powershell.exe -file "%CD%\PhoenixCall.ps1" Set Dienst=HKLM:\SYSTEM\CurrentControlSet\Services\%A7% powershell.exe -file "%CD%\PhoenixCall.ps1" Set Dienst=HKLM:\SYSTEM\CurrentControlSet\Services\%A8% powershell.exe -file "%CD%\PhoenixCall.ps1" REM III Config the Services via REGADD - SC dont work here REG ADD HKLM\SYSTEM\CurrentControlSet\Services\%A1% /v Start /t REG_DWORD /d 2 /f REG ADD HKLM\SYSTEM\CurrentControlSet\Services\%A2% /v Start /t REG_DWORD /d 3 /f REG ADD HKLM\SYSTEM\CurrentControlSet\Services\%A3% /v Start /t REG_DWORD /d 3 /f REG ADD HKLM\SYSTEM\CurrentControlSet\Services\%A4% /v Start /t REG_DWORD /d 2 /f REG ADD HKLM\SYSTEM\CurrentControlSet\Services\%A5% /v Start /t REG_DWORD /d 3 /f REG ADD HKLM\SYSTEM\CurrentControlSet\Services\%A6% /v Start /t REG_DWORD /d 3 /f REG ADD HKLM\SYSTEM\CurrentControlSet\Services\%A7% /v Start /t REG_DWORD /d 3 /f REG ADD HKLM\SYSTEM\CurrentControlSet\Services\%A8% /v Start /t REG_DWORD /d 2 /f 1 Find them 2 Change Reg Permissions via Powershell 3 Change the Starttype $Service=$Env:Dienst $acl=Get-Acl $Service $person=[System.Security.Principal.NTAccount]"BUILTIN\Administrators" $access=[System.Security.AccessControl.RegistryRights]"FullControl" $inheritance=[System.Security.AccessControl.InheritanceFlags]"ObjectInherit" $propagation=[System.Security.AccessControl.PropagationFlags]"None" $type=[System.Security.AccessControl.AccessControlType]"Allow" $rule=New-Object System.Security.AccessControl.RegistryAccessRule($person,$access,$inheritance,$propagation,$type) $acl.AddAccessRule($rule) $acl|Set-Acl
  4. Just a Notize: - Not sure - did my First Script switch all inherits ??? (remove inherit where one is, and make one where no is) - instead removing all of them ???? (if yes, how to fix that `d*** i hate inherits! - Fixed It - see Edit above) - Now i am trying to remove all inherits from Registry (HKEY_USERS and HKEY_LOCAL_MACHINE) - but hell - i am sitting since days on it, without getting it... - maybe someone can help... Note: The Google Key is just for Testing, - it should run at HKU and HKLM as root normally) - Edit: It works with the "Powerrun" Tool Alacran posted - but only for this key - running for whole HKLM, just crash Powershell.... - and destroy windows foreach ($i in Get-ChildItem Registry::HKEY_LOCAL_MACHINE\SOFTWARE\Google -Recurse -Force -Name) { $name=-join("HKLM:\SOFTWARE\Google","\$i") echo $name $acl=Get-Acl $name $person=[System.Security.Principal.NTAccount]"BUILTIN\Administrators" $access=[System.Security.AccessControl.RegistryRights]"FullControl" $inheritance=[System.Security.AccessControl.InheritanceFlags]"ObjectInherit" $propagation=[System.Security.AccessControl.PropagationFlags]"None" $type=[System.Security.AccessControl.AccessControlType]"Allow" $acl.SetAccessRuleProtection($True, $True) $rule=New-Object System.Security.AccessControl.RegistryAccessRule($person,$access,$inheritance,$propagation,$type) $acl.AddAccessRule($rule) $acl.SetAccessRule($rule) Set-Acl $name $acl }
  5. here is what i used in XP (its kind of unfinished and not from me alone) - but it is good enough to extract all resources of a folder, - and change them...
  6. Edit thx - i willi give it a try
  7. After much of tests i was able to write a Powershell Script, that replace, all inherits of all folders and subfolders (even the one with long names), without taking the Ownership ! Reasons: - Taking the Ownership of a Windows Folder can make much Problems ! (I dont like solutions, that can make more problems than they solve, and i even dont like it, if people say, dont change Permissions of systemfolders blabla - Me, the Owner of my Harddrive, like to have R/W Permissions to all Folders, but some folders get there permission inherit from a Top Folder, and so, i wasnt able to set their permissions... so many commands iacls, dir -ad, some powershell commands and ways, just didn´t do it, but i was able to to it (R4 never gives up...) 1) You need to allow Powershellscripts - in a Powershell console (with Adminrights) run: Set-ExecutionPolicy RemoteSigned (maybe "unrestricted could do the job too, you can set it back to restricted later) 2) Then run the script (with Adminrights too) 3) THis could take a while !!! Some really rare folders (probably Symbolic NTFS Links, Junctions or Similar) give Errormessages, - you can ignore it ! cd "C:\" foreach ($i in Get-ChildItem -Recurse -Force| ?{ $_.PSIsContainer}) { echo $i.FullName $acl=Get-ACL $i.FullName $acl.SetAccessRuleProtection($True, $True) Set-Acl $i.FullName -AclObject $acl } (this little success brings me some steps forward, in getting a clean os, - next step is setting r/w permissions for buildIN Admin, and then check the 1355 dll´s i identified, that can be called by regsvr32) - (maybe i could replace reginherits too...) mfg R4D3 Edit: Uhm, sorry my Script seems to switch all folderinherits like 180 degree (good for folders with inherits, but not for folders without - SetAccessRuleProtection($True, $False) seems to be better, and with giving Adminrights this hopefully does it: Edit: Just moved $acl.SetAccessRuleProtection($True, $True) before the new rule (cause, first the existing inherits must be replaced with local one, before the new-Object Rule, took them off and give Built-In Admin permissions.... cd "C:\" foreach ($i in Get-ChildItem -Recurse -Force| ?{$_.PSIsContainer}){ echo $i.FullName $acl=Get-ACL $i.FullName $person=[System.Security.Principal.NTAccount]"BUILTIN\Administrators" $access=[System.Security.AccessControl.FileSystemRights]"FullControl" $inheritance=[System.Security.AccessControl.InheritanceFlags]"ObjectInherit" $propagation=[System.Security.AccessControl.PropagationFlags]"None" $type=[System.Security.AccessControl.AccessControlType]"Allow" $acl.SetAccessRuleProtection($True, $True) $rule=New-Object System.Security.AccessControl.FileSystemAccessRule($person,$access,$inheritance,$propagation,$type) $acl.AddAccessRule($rule) $acl.SetAccessRule($rule) Set-Acl $i.FullName -AclObject $acl }
  8. i use this from here http://www.alkanesolutions.co.uk/2016/06/29/set-registry-key-permissions-powershell/ (i check so many scripts for my RepairService Script, - with this one, i got "lucky" It just add Permissions for the BuildIn Admin, without breaking something (like Regini does...) but you need to allow PS-Scripts first... - in a Admin Powershell type: Set-ExecutionPolicy RemoteSigned (maybe "unrestricted could do the job too, - restart after change.. standard is: Restricted) Remind to Change the ALC Name to your OS Language, and change VORDEFINIERT\Administratoren to BUILTIN\Administrators First define your Regpath as EnvVariable "Dienst", then Call it: (The HKLM: is correct call for Powershell in this case...) Set Dienst=HKLM:\SYSTEM\CurrentControlSet\Services\YOURService powershell.exe -file "This Script.ps1" $Service=$Env:Dienst $acl=Get-Acl $Service $person=[System.Security.Principal.NTAccount]"BUILTIN\Administrators" $access=[System.Security.AccessControl.RegistryRights]"FullControl" $inheritance=[System.Security.AccessControl.InheritanceFlags]"ObjectInherit" $propagation=[System.Security.AccessControl.PropagationFlags]"None" $type=[System.Security.AccessControl.AccessControlType]"Allow" $rule=New-Object System.Security.AccessControl.RegistryAccessRule($person,$access,$inheritance,$propagation,$type) $acl.AddAccessRule($rule) $acl|Set-Acl
  9. UPDATE: R4D3_Service_Fix.zip NEW: Grants "Build-In Admin" Permissions with a called PowershellSkript (just a minimal single Entry that allow BuiltIn Admins to change the RegEntry) IMPORTANT: If your Windows is NON-English (like mine) you need to change 1 Entry in the Powershellscript ! - Read the Comment in the Phoenix.bat You need to Run AdminPowershell, and run: Set-ExecutionPolicy RemoteSigned one time (to allow Powershellscripts - dont forget to Restart then !) You can turn it off with Set-ExecutionPolicy Restricted after... Edit: You have, to rightcklick each file, - and click allow (there is a flag on the files, that they are from another computer... - next time i zip them from a Fat32 Filesystem, then this flag shouldn´t be there...) Files: - Phoenix.bat Change All Services to their Original State (Creators Update W10 Home) (Highly Recommend New: Grants Admin Reg Permissions for Protected Services) - R4D3_Service_Fix.bat Yeah Hell MS, i fixed them ! (Change 22 Services & 1 Driver to Disabled, 7 to Demand) New: Grants Admin Reg Permissions for Protected Services) - PhoenixCall.ps1 Powershellscript thats be called from the Batchfiles to Grant Permission Note: you can check all Service acl flags with (even to get names you can place in the PhoenixCall.ps1) this powershell command:
  10. They did it in the German Version.... Exapmle of funny MS Translation: 1) SUBACLS... - Example: The User "Everyone" is translated to "Jeder"... - a English Script, that need to change Rights, just don´t work ! If it is a .cmd i can change it myself, - in an .exefile - no chance... 2) Folders: - I can´t trust Explorer anymore (cause MS used the Dektop.ini files - to call the mui´s) - in a German XP the Path %ProgramFiles% is called "Programme" and this was the real Foldername - in Windows 10 the Explorer shows the Folder as "Programme" but the foldername is "C:\Program Files" - I would wish they did it otherways - (Using Mui´s for SubACLS not a real Translation, and for Folders the real one... - like they did in the past...) P.S. They translated most of the ACL´s not only "Everyone" - they even did mui-files for "Short-Cut-Names" oO & there is no hint, that the desktop.ini files does different things than before... P.P.S On their Auto-Translated Help pages - they even translate Commands and Flags
  11. Nah, its ok - thx (it has a little error at Plug & Play, cause of the & - but i can live with that...) I think about trying to delete some dependency flags, - maybe then i can disable more services, without eventlog errors...
  12. Maybe this error just happens in localized versions, or its a Home/Premium/blabla thing ! If i like to run your script on a "VM Fresh Installed Windows 10 Home" in German with UAC disabled: I end up in System32, if i choose "Als Administrator ausführen" ! Only "CD /D %~dp0" fix this... @Echo Off CD /D %~dp0 Echo Path is %CD% Pause - So if you like to Present your Tool for all people, you have to add CD /D %~dp0 Not a big deal...
  13. Hell YES, (I remember it now... - Lost my Brain somewhere...) - So, I was just able to show the problem, but not to find an elegant solution - good boy
  14. R4D3

    WinLite10 v7.2

    The "tweaktool" i wrote over, is a bunch of different fles (most batch, some vbs, some dat, some dll, some exe) - i dont write it is malware (its problably not, just looks like...) - but honestly i cant guarantee that it is or is not ! (... i think, a single vbs script can be really dangerous, but it doesn´t has to be...) - Point was: Even without Cortana, Startmenu can work (with some spicey extra work...) that swiftsearch tool your wrote about, i will test it... - i use AgentRansack until now for search (https://www.mythicsoft.com/agentransack)
  15. Call an exefile from a (Admin-Batch), that just lays in the same non-environment folder, doesnt work anymore ! If you run something "as Admin" you end up in System32 directly (not sure when MS did that) (and you can not set the runnig dir, in the batch, cause you are allready in system32 (by noel does it work, cause he propably installed the ADK´s (or wherever they are inside, and this installer add a environment variable, so he can call it from everywhere, - or they was copied to a environmentpath like system32... - just copy the exe files to a path like system32 and you can call them from everywhere.... (or stop working with relative paths, use absolute...) I dont know, why Microsoft try to force users, to copy every crappy tool from the internet to system32, but i am sure, some guys will like that... Run that Batch 1 Time Normal, and 1 Time as Admin @Echo Off Echo ................................... Echo Congratulations You are in %CD% Echo ................................... pause
  16. R4D3

    WinLite10 v7.2

    no, you are wrong, maybe on that way you removed cortana (dism ? wimtweak ?) i am not sure if i remember right, but i repaired my cortana after removal with wimtweak (or similar).... maybe with that Sniplet - or i used the "Tweaking.com - Windows Repair" Tool (has some interesting repair batches in it, but i am not sure if it can be trusted 100%- cause the site and the Program looks from optic design like malware ) Run as Admin powershell "Get-AppxPackage | % { Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppxManifest.xml" -verbose }"
  17. Disclaimer: Use at own risk ! ---------------------------------------------------------------------------- What is it for: Fixing Errors, & most of the Eventlog Errors (from a fresh or older Win10) by Service Config ---------------------------------------------------------------------------- Why: - Errors in the Eventviewer after a fresh install - Some services was changed, you maybe didn't realize, but what you get, is that the Store, Windows Update & more couldn't run, properly anymore. - My Experience is, most problems that appear on "friends" computers in Windows 10, belongs to the Service config ! ---------------------------------------------------------------------------- Some weird Examples I've found: - get Eventlog Errors by change LanmanWorkstation from Auto to Demand (On Demand, it will be started anyway) - get Eventlog Errors by change WSearch (Indexing) from Auto to demand, but NOT if you set it to disabled... ??? ---------------------------------------------------------------------------- Fixes Errors & Eventlog errors like: - DNS Client (v10 Vortex+wpad) EventID 1014 - Service Control Manager (CldFlt+Spooler+iphlpsvc+Printer+Update Orchester) Event ID 7000 - DistributedCom (SID: Nicht verfügbar) ID1016 - SecurityCenter (SECURITY_PRODUCT_STATE_ON) EventID 16 - Perflib (Bits) EventID 1008 - Application Error (MRT.exe) EventID 1000 - DHCP CLient (DHCP Waiting) EventID 50160 - AppModel-Runtime (0x800700B7) EventID 37 - User Device Registration EventID 360 - Pipe Closed Errors - Windows Store Problems (0x80072ee7) - Cluster Errors & more ---------------------------------------------------------------------------- Limits: - English\German Windows only, cause MS translated the ALC Permission Names (the user BUILTIN\Administrators is called VORDEFINIERT\Administratoren on a German Windows oO) - Intention is to fix Errors, maybe you have reasons, to keep a service disabled, even if it provide errors - Can't and won't change following 4 Services: DcomLaunch, RpcSs, WinDefend, gpsvc - don't try !!! - Permissionchanges are permanent, sorry. - I would like to set them to their Original State after, but feels like to much work. BUILTIN\Administrators Allow FullControl (A;OICI;KA;;;BA) will be added on some Registry Service Entry's. - Doesn't change, or restore, driver states that can controlled with SC command, cause: one single error here, and Windows is smashed... - Doesn't fix KernelPnP (WudfRd) EventID 219 - This one can be fixed with "snappy driver installer" or similar which is using the driverpacks ---------------------------------------------------------------------------- Changes: 23.07.2017 - Add a Powershell policy bypass - Add OS Language Check exitloop (Script is for English and German only, and will exits on other Systems !) - Kept NcaSvc, WEPHOSTSVC and WiaRpc at Original State (cause one or all three, could be needed...) ---------------------------------------------------------------------------- Files: Download -> R4D3_Fixes.zip <- Download or here link https://www.file-upload.com/jd6our1a5hrg R4D3_Fix_All_Services_to_Default.bat - Change All Services to their Original State 1. OS Language will be checked 2. Services with Variable Names will be searched, and declared as variables (could take a while) 3. A Powershellscript runs with that Variables to get Full Adminrights on Permissionprotected Services From: www.alkanesolutions.co.uk/2016/06/29/set-registry-key-permissions-powershell 3. Some Services will be Changed via REG ADD (cause they can't be changed via SC) 4. NTFS-Registry Permission Protected Services will be changed to their Original State 5. Other Services will be changed to their Original State ---------------------------------------------------------------------------- R4D3_Fix_Service_Config.bat - Changes the following Servicestates Demand: CDPUserSvc_xxx = CDPUserSvc_xxx CDPSvc = Connected Devices Platform Service DoSvc = Delivery Optimization Service FontCache = FontCache MapsBroker = Downloaded Maps Manager NlaSvc = Network Location Awareness OneSyncSvc_xxx = OneSyncSvc Disabled: AxInstSV = ActiveX-Installer (needed sometimes in domain networks) CldFlt = Cloud Files Mini Filter Driver (no reason for that one) DiagTrack = Diagnostics Tracking Service (no thanks) DusmSvc = Data Usage (no thanks) iphlpsvc = IP Helper Service (keep, if you use IPv6) lfsvc = Geolocation Service (no thanks) MSiSCSI = Microsoft iSCSI Initiator Service (something for servers) RetailDemo = RetailDemo (no thanks) SCPolicySvc = Smart Card Removal Policy Service (never seen someone using a smartcard reader) SessionEnv = Remote Desktop Configuration (for remote desktops) SysMain = Superfetch (stop unnecessary writings on my ssd) TrkWks = Distributed Link Tracking Client (nobody need that) UmRdpService = Remote Desktop Services (for Terminal RDP Connections) W32Time = Windows Time service (to get rid off it ADMIN CMD: w32tm.exe /unregister) WbioSrvc = Windows Biometric Service (no thanks) WinHttpAutoProxySvc = WinHTTP Web Proxy Auto-Discovery Service (for Domain? Networks with Proxy Server) WMPNetworkSvc = Windows Media Player Network Sharing Service (for PlugAndPlay Network Media Devices ???) workfolderssvc = Microsoft Work Folders (needed sometimes in domain Networks) WSearch = Indexservice (stop unnecessary writings on my ssd/laptophdd) ---------------------------------------------------------------------------- R4D3_Fix_Homegroup_Assistent.bat (Fixes Error 0x80630203, where a homegroup could not be changed or joined) - It just deletes the protected crypto files in \Users\All Users\Microsoft\Crypto\RSA\MachineKeys ---------------------------------------------------------------------------- R4D3_Fix_Geolocation_Service.bat (Fixes the Error, that Geolocation Service could not be Started, via Removing a "false Trigger Info Reg Key") ---------------------------------------------------------------------------- R4D3_CleanUp_All_Event_Logs (cmd wmic Shortcut) ---------------------------------------------------------------------------- R4D3_Restart_Special (cmd shutdown Shortcut) ---------------------------------------------------------------------------- R4D3_Show_Activ_Connections (cmd netstat Shortcut) ---------------------------------------------------------------------------- R4D3_Reg_Tweaks.reg (some regtweaks, mostly for ssd, read the comments in the reg, before using) ---------------------------------------------------------------------------- Usage: 1) Important: You need to right click each file first, and click allow (there is a flag on the files: file is from another computer...) 2) (Optional) Cause I disable the indexservice, I would suggest to remove the indexes before (right click properties c: -> disable indexoption, then: in control panel under index, remove the folders, and rewrite the index... - both steps could be take a really long long time...) 3) .bat Files and Shortcuts needs to be run with ADMINRIGHTS to work properly (Mouse right click on the file and then ...) 4) (Optional) Cleanup your Eventlogs first - from a Console with Adminrights type: (or use the Shortcut) for /F "tokens=*" %1 in ('wevtutil.exe el') DO wevtutil.exe cl "%1" 5) Run "R4D3_Fix_All_Services_to_Default.bat" as Admin (Highly Recommend) 6) Run "R4D3_Fix_Service_Config.bat" as Admin (or edit it first to fit your needs) 7) Restart Your Computer (Optional: "Special Refresh [Cache???] Restart" via Adminconsole "C:\Windows\System32\cmd.exe /c "shutdown -g -t 0" (or use the Shortcut) 8) (Optional) Check your Logs in Eventviewer ! 9) (Optional) Test and Tell me, what Problem my Script fixed for you... Notes, you can: - Check all Service acl flags with powershell: Get-ACL "HKLM:\SYSTEM\CurrentControlSet\Services\*" |Format-List - Check Service Driver Dependencies: for /f "tokens=2" %s in ('sc query type^= driver ^| find "SERVICE_NAME"') do sc EnumDepend %s - Check Service States Config: for /f "tokens=2" %s in ('sc query state^= all ^| findstr "SERVICE_NAME"') do @(for /f "tokens=3" %t in ('sc qc %s ^| findstr "START_TYPE"') do @echo xxx %s = %t) Kept from Old Post: - would be awesome if someone could change the Snippet that the output is: xxx SERVICE_NAME = START_TYPE = DISPLAY_NAME
  18. 1) Your .txt File have a "Alternate Data Stream" on it... (You can remove it with Software like ADS Spy or Similar) 2) If i have the 2 files in a NON-Environment Folder, "Run-AS-ADMIN" doesnt work, cause you end up in C:\Windows\System32 - maybe thats an version specific error (v1511 Build 10568.839) Solution: i copy both files to C:\ and add "cd c:\" to the script... (if its still not working, you maybe need to run handle.exe one time manual to accept sysinternals EULA) 3) Now, the handle got closed... - but: - i lost the Rightclick Menu (on explorer based windows) - most of the new config windows doesnt work anymore - Taskmanager doenst work anymore ---> so for me it doesnt make sense (maybe its better in other builds...)
  19. They provide "Errors" I dont like Errors, so this is reason enough to fix it... - but it seems i am out of Windows 10 for now... - after a re-install (tonight) the activation is lost (what is a bit crazy, cause i thought, that the activation was stored in the bios) - or that MS stored a Win10-Flag on my Serial... - d***, now i have to think if i choose win7 or xp.......
  20. Hey guys, as you all know, i am not a very big fan of NTFS Rightsmanagement.... - In this Case, MS trapped into their own piece of .... There are some Services, who cannot be controlled (start/stop/...) They all have a random Number at the end, like _3565F, so here is the mistake... But why is that so ? - If you take a look to the Registry service Sektion, you find some doubled entrys a) one with that random number b) and another one with different entrys, and: This one has LOCKED permissions !!! Because of that, the setup make the second wrong entry ! To fix it, - you need to export both entrys of every service, - need to take the ownership, and reset the permissions ! After that, you can delete both entrys, put the regfiles together, and reimport the good entry... Now, the services work like they have to... greeting r4 EDIT: Just change the service starttypes, in a admin console with SC (and ignore _xxxx) - call it without and it can be changed - see my serive config - i posted today 21.04.2017
  21. - i just wrote, how it should be instead...
  22. You know, i allready thought, that a good system would not let you shutdown a full heatet system without a warning message, and would do a full cpu/gpu cooldown before shutdown - on this way many laptops would be protected from micro cracks, and get a longer lifetime cyle... - but thats another case...
  23. This is my Second bigger Feedback, it´s just about the most worse things I can't stand off ! I will post it later with the built-in Feedback App) Bugs that are still existing and I already Tested, like the most worse bit BMP Codec Bug ! Are reposted here ! if you like to read about my Wishes, and some of my already found Bugs (I did not test all off them for this Report) you have to visit: http://www.msfn.org/board/topic/173436-windows-10-detailed-feedback-and-wishes/ My Firewall Rules Set (unperfect, unfinished) can be found here: http://www.msfn.org/board/topic/173615-windows-firewall-rules/#entry1095994 Feedback: 1) BUG: 32 Bit BMP Codec It is Still Broken (Preview, Photos and Paint does strange things with some Color channels on 32bit Bitmaps...) 2) BUG: Standard Scheduled Tasks destroys Power Saving ! One ore more of the preconfigurated Tasks (why there are so many of them - its like a Overkill) destroys Energy Saving modes like Standby ! That means: My Laptop start Up from Sleep by itself and do things (I don't know) by itself... LISTEN Microsoft: IF I SEND MY LAPTOP TO SLEEP, IT HAS TO SLEEP, NOT TO WAKEUP AND DO STUFF I DON'T KNOW, BY ITSELF ! (If I decide to add a Schedulerjob, it would run in Idle-Mode, before Standby !) Solution: I removed all of the endless annoying Preconfigurated Tasklist on Scheduler, that wasn't blocked (yes some of them are blocked... - why ?) I know that I possibly break something I maybe don't know by that - but it was the only functional Solution to get a nice and smart Powersaving System - works perfect after !) 3) Energy Saving Profiles are Inefficient ! A) If my Laptop runs Battery, I prefer to use all Possible Saving Options that are Possible - no matter which Profile is active (Solution: Manual Change on all Profiles) B) Why the CPU Minimum Usage is Set to 5% in Minimal and Balanced Mode ? This stops the CPU going into Idle Mode and Throttledown, this costs unneeded Energy, that I have to pay for ! (Solution: Manual Change to 0% on all Profiles) C) On High Performance The Minimum CPU Usage is Set to 100% ??? - Are you Kidding me ? Even on that Scenario my CPU like to be able to change into Idle Mode ! (Solution: See Above) D) Why the Standard Time for Harddrives is 20min on Every Profile, when I use a SSD ? A SSD don't need time for Start Spinning like a normal Harddrive, what means, there is no Reason, to let it Run Up to 20mins if it has nothing to do (Yes with normal Harddrives it makes some sense to let them spin longer, cause it needs some seconds to respin after a SpinOff) (Solution: Manual Change to 1min on all Profiles) LISTEN: USERS DON'T LIKE TO CHANGE THEIR ENERGYPROFILE 1000 TIMES OVER A DAY ! A CPU THROTTLEDOWN (CPU Reduces MHZ by Reducing the Power on IDLE MODE) MUST BE POSSIBLE EVERY TIME, ON EVERY PROFILE !!! & SSD´s ARE NON SPINNING DEVICES ! 4) USB Harddrives still Spinning after a Secure Disconnect ! I know, that a secure disconnect normally is only needed if the Drive using Cached Smartdrive Techniques to be Faster (which must be toggled on for usage manual by the user) But, cause I really don't like, to plug out cables on spinning USB Harddrives, I would prefer that Secure Disconnect sends a SPIN OFF Signal to the USB Device too... LISTEN: If you don't like to add a SpinOFF Command to the Secure Disconnection, please give me back the "Park Command" from MS-DOS 5.0 !!! 5) Windows Firewall - All Doors Open, no Outbound Dialog, if I Close them ! A) BUG 1: The UI-BUG (UI Restarts if I Copy and Paste Names on the Advanced Firewall Rules Config) is annoying ! B) BUG 2: At some Points Envorinment Varibales (used Automatic when adding an .exe File that lays as example on the User Profile) could not be readed C) THE Standard Rules Set (Every Outbound is allowed by Standard, is the biggest security whole ever !) I like to be ASKED if a Prog like to do a Call Out, cause it is my own **** Privatsphere ! Example: A Software Developer doesn't need to Know, how often a Day, Week or Month, and on which Times Exactly I start his Program ! (if he like to know, I only tell him, if he pay me for that information !) Its even a Security Risk, cause many Bloat and Spyware will download their s*** automatically by their Installers, and since most Software are using WEB-Installers instead of a Full OffLine Version, its getting worse) But: IF I Change the Standard Rules to: Everything is Forbidden to Callout since there is no Rule - Windows Firewall don't ask my if I like to allow a Callout for Edgebrowser, Windows Update, etc... - What means that I have to make manual Rules for every Software but I wasn't able to make a Allow Rule for WindowsUpdate, what means that I have to Change my whole Rules Set back to Standard, every time I like to do Updates ! GRRRRRR !!! 6) Stop Software Hijacking my Standard Browser Example: I install a Software, and it Starts my Browser and Loading its website by itself - I know, that I can prevent that, by Editing the Registry and put out, the Standardbrowser entry's, - but I would prefer a dialog, that asks me, if I like to allow a software, to Hijack my Browser ! (Don't like to end up on Captured Sites, that I don't click by myself ! - Don't tell me Websites can't be captured !) 7) The Search is slow and Sucks I like the Fast and practical Search on Windows XP, where I was able to Decide if I search a String inside Files, or Files by itself... - If I search a file with Standard Options as example for Shell32.dll - it doesn't find it... - if I change some Options its able to find it, but it needs to much time - compared to Windows XP Search, or the Software: "Agent Ransack" 8) Desktop.ini - is going worse ! Principial I like to see all hidden and System Files, and if I do so, I see the Desktop.ini (that I used in Windows XP, to force FolderBackgrounds, Foldercolor and ...) is part of the Translation Options, - and if I delete them, my Localized Shortcuts are Named in English... - Did you really need a Desktop.ini, that links to a Place in the Registry to localize my Shortcutnames ? 9) Please, LET ME Remove all Following Apps and Features, without any Problems... (i will try it again and again, cause i need to...) Unneeded Ballast, cause I am using HomePremium: - Business Edition Packages - Education Editions Packages - Enterprise Editions Packages - Professional Editions Package's - RetailDemo Editions Packages Personal Untrusted Security and Private Data Leaks, for me and the most Users: (means I don't trust you, Microsoft, to keep my Private Data Private !!!) - This doesnt meant, that some parts of it cant be usefull, if they are End-To-End Encrypted with SHA-512 or better...: - BioEnrollment - Biometrics - Calendar - Cloud - Contacts - Cortana - Defender - FaceAnalysis - Photos - Geolocation - Grove Music - Movie & TV - OneDrive - Telemetry - RemoteAssistance & RemoteDesktop - ShareMedia - Sway - WMPNetworkSharingService Sense and Useless: - 3D Builder (sadly I don't have a 3D Printer) - Candy Crush (Don't need it) - Finance (no Broker here) - First Steps... (your and My One, are in different reality's) - Handwriting (no Touchscreen or similar thing here) - IIS (this is a single HomePC no Network, no Webserver !) - Indexer (On a SSD [Limited Write Cycles !!!] its doing useless writings - build a better Searchoption like XP Search or Agent Ransack instead) - Mail (no I don't use offline mails at all, cause Windows 10 is starving to often, and I don't like to lost or need rescue them every time !) - Maps (OK not such bad thing, but I have Google Maps !) - Minecraft (don't need it !) - News ( I like to choose Media I trust by myself, thx !) - ntv (I don't trust them - the Sending to much unreflective uncritical documentations about Weapons and Tanks - its like the TV from the Starship Troopers Movie... !) - OCR (Never used it since Win95) - Office Downloader (sorry, I decide years ago to use OpenOffice !) - OfflineFiles (my Files are always OFFLINE !) - OneNote (don't need it !) - ParentalControls (there are no Kids inside here !) - Photoshop Express (Photoshop CS2 is Freeware until 2 Years and much better !) - Prefetch & Co (its still an SSD I use, stop limiting its lifetime by unneeded writings !) - Printing Online (would never ever do that) - Skype (no Skype at all, but if - I use the Portable Version !) - SnippingTool (useless, I am able to push the Printscreen Button on my Keyboard, and add and edit it in Paint by myself !) - SNMP-Package (I only need IPV4 and maybe IPV6 in the future ! Nothing else ! No IGMP, no LLDP, no QOS, no Topology, no Multiplex... - its a Single PC without Network !) - Solitare (don't need it !) - Speech (don't need it !) - SpeechComponents (I am not blind) - Spelling-Dictionaries (I prefer the Build-in Language Correction of a Writing Software) - Sport (I hate all that violent National Fan Racists of popular Sports so much, that I hate Sportnews by itself !) - StickyNotes (I use notepad and the desktop instead !) - StorageService (don't need it !) - Synchronization (to often I just named files with different contends the same name, and I don't like to destroy my data by hitting a button) - TabletPC (no Tablet here !) - Telephone Stuff (no, I don't have a LuminaPhone, and I don't want it !) - TextPrediction (don't need it) - TextToSpeech (maybe I could keep that, if it works a 100% in German) - Twitter (no I don't use it, and if, I use it in Browser only !) - UAC (I Prefer a Sandbox, a Outbound Firewall, Regshot, and the netstat Command for untrusted Software instead !) - WebcamExperience (what Kind of Experience you talking about ? Don't need it) - Windows Hello (my PC don't have any Intelligence by itself - maybe in 500 years... So stop saying hello to me !) - WinSATMediaFiles (senseless, 3D Mark, Prime95 and SpecViewPerf are the Standard Benchmark Tools) - XBox (I DON'T HAVE ONE !) - Xps (Never used that..) 10) Bug: Repair Installation dont works I did a unsuccessful repair installation after I broke the system by trying to remove the above Packages with dismn Online command, so I was forced to do a new Full Install... Thx for Reading R4D3 P.S. - Cause english isnt my native language, i used a online Spellchecker before, - if something is to hard to understand, cause of some language mistakes, just tell me...
  24. Hey Nuhi - just wanna tell you, that "IMHO" now it should be the time, to add some working presets anywhere, and to documentary the options... Minds: Sadly I still try the latest Free Edition - cause I am not sure if a Component Removal make any sense anymore, cause of this "Windows as a Service-Thing"... I have the Horrible Vision, that future Updates, based on a Removed Component, destroy the OS... But even with that Options I can use in the Free Edition, - its mind blowing, and hard to understand (not all Components, etc have Descriptions - and the descriptions they have are hard to understand them self - in English, and in German cause of some Translation lacks a bit more... Don't know, what you think about, - but if it is hard for me to understand, my friends, family, neighbors, would understand nothing of it, - so you really have to spend some work on the documentation... - I even wasn't able to find any Preset in the world wide web... - maybe the time is over, where people spend days, month, years - just to get a well configurated windows ISO - there are to much other problems in the world, and the people who grow up with jumpering mainboard, writing configs on console, etc are getting old, or in resignation... I wish that your tool is getting famous, and that you earn the fruits of your spend-ed lifetime, but I see no chance, if not every option is easy-understandable--and-self-explained - I think most people wanna have something that so easy like a One-Click-Solution - and the closer you get to this (with tested and explained presets) the more chances you get Maybe a Preset maker could be a solution, with questions like: 1) Single PC 2) HomeNetwork PC 3) Domain 4) Laptop 5) Tablet 6) Desktop 7) Wlan 8) Cable 9).... Cause I don't know if I need as example a MultipointConnector or ADLDS, ... - I even don't know, what that could be, and to be honest, I don't wanna care about it... - its confusing and frustrating to know, that if i spend the time again, to find all the hints, and tweaks, and solutions for my customized OS (like in Dos, Windows 3.1, 98, ME, XP before, the software and hardware industry will force me to a newer one, short after i am close to the target... - and this only, cause MS forced me (more or less) before to use their uncustomizeable **** OS Update: Or just add a Config "Wizard"
  25. Hi folks, after my brain got soup, by re-arrangeing code snippets for days, i could need a little help with that: 1) Important: Select ID needs a Reset to his Option Title, when using a File by input type... ??? 2) Important: Can i shrink the code by using variables for param name ? and how to do that... Cause now the function changes the whole player every time... 3) Less Important: The Input Type File Search Button.... - how to change text and style ? 4) Optional: Could need a second hidden wmp window (without controlls) under the controlls, which popups only when a avi/mpeg file type is loaded... P.S.: need to be loaded by mshta.exe [or as background pic] (chrome and opera dont run the wmp part of it, only an old firefox with wmp plugin did the job too...) P.S.II: there are different ClassID´s of WMP outside, seems it belongs to the installed Version, which one works well (with the CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6' i used before, the Statusbar dont show up.... Now it looks like this: (the violett 1px space is the destop,) wmp.bmp thx for your help <?xml version="1.0" encoding="iso-8859-1"?><!DOCTYPE html><html> <head> <style type='text/css'><!--body {background-color:transparent; overflow:hidden; margin:0px; border:0px; padding:0px;}--></style> <title></title> </head> <body> <img src='Fraud.jpg' width='100%' height='100%' align='middle' alt='Bilddatei fehlt' /> <script type='text/javascript'> <!-- function song( aid ) { document.getElementById('MPPosition') .innerHTML="<object classid='CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95' style='width:300; height:48px;'><param name='fileName' value='"+document.getElementById( aid ).value+"'><param name='ShowStatusBar' value='true'>" } //--> </script> <div> <select id='optionfaenger' onchange='song( this.id )' style='color:#9bf; background-color:#000; border:0px; width:300px; position:absolute; top:1px; right:0%;'> <option title='leer'> :::::::::::::choose your songhere::::::::::::: </option> <option value='Data_2.avi'> Video </option> <option value='install.m3u'> Install.m3u Local </option> <option value='c:/_windows/resources/themes/docs/install.m3u'> FF7 Prelude </option> <option value='greska.mp3'> Mp3 </option> <option value='http://urltosong1playlist.m3u'> Link </option> </select> </div> <div> <input type='file' id='dateifaenger' onchange='song( this.id )' style='color:#9bf; background-color:#000; width:300px; position:absolute; top:24px; right:0%; margin:0px; border:0px; padding:0px;' /> </div> <div id='MPPosition' style='position:absolute; top:41px; right:0%;'> <object classid='CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95' style='width:300; height:48px;'> <param name='fileName' value='c:/_windows/resources/themes/docs/install.m3u'> <param name='ShowStatusBar' value='true'> </object> </div> </body></html>
×
×
  • Create New...