Wednesday, October 24, 2018

[Solved] Error Google Drive: Sorry, you can't view or download this file error

[Solved] Error Google Drive: Sorry, you can't view or download thisfile error by Downloader.ga

Whenever you click on the file in Google drive to download it, an error shows:
Sorry, you can't view or download this file error

Too many users have viewed or downloaded this file recently. Please try accessing the file again later. If the file you’re trying to access is particularly large or is shared with many people, it may take up to 24 hours to be able to view or download the file. If you still can’t access a file after 24 hours, contact your domain administrator


There is a method that allows you to bypass Google Drive's 24 hour limit. How that is done depends largely on what you see on the screen. Before we begin, sign in with your Google Account in Google Drive and then let it ready.

1. Go to the file you want to download then click symbol ⋮ , select ★ Add star .

2. Go to your Google Drive account, click on ★ Starred


3. Right click on starred file, select Make a copy



4. When the copy of the file made, then select it with a right-click, and then select Download



5. Select DOWNLOAD ANYWAY



6. Browse to where you want to save file, choose Save.



Good Luck!

Labels: , ,

Wednesday, October 10, 2018

[Solved] Chrome doesn't load any websites after update Windows withCryptSvc problem

The problem started with the April 2018 Win10 1803 Feature Update and can also happen with fresh Windows installs that use 1803. It is an (unknown) artifact of how Windows is installed or updated. The 1803 update can cause a core Windows identity service (CryptSvc) to loop endlessly and stall connections.

First verify you have the CryptSvc problem:

- Before opening Chrome, open Edge:
  • If Chrome works OK, but only if Edge is also running -> this is very likely a CryptSvc issue.
  • If not, you may have another problem.
- To verify the CryptSvc loop explicitly
  • start Chrome without Edge.
  • while Chrome is stalled (and CryptSvc is looping), verify CryptSvc high CPU usage - it's normally quiet
  • in Task Manager> Services, select CryptSvc, then right click for Details, (CryptSvc runs as an svchost task with matching PID)
  • check the svchost CPU column, if > 2%, proceed with the registry repair.
The problem can be fixed (temporarily) by restarting the CryptSvc service from task manager. To check if you need the registry repair, you can watch your CryptSvc CPU usage.
Check Task Manager> Services, find CryptSvc, right click, go Details, check CPU.
CryptSvc runs as an svchost task with a matching Details PID that shows the CPU usage (available from Details). Any sustained CPU usage is high. It runs briefly at Windows startup and then briefly as needed - it's normally quiet.

CryptSvc Registry Repair Script

Here's a scripted CryptSvc registry repair, that avoids the downsides from changing the CryptSvc logon account.

1. It uses a third party admin tool, SetACL.exe, which you can download here.  This is a well established tool and seems to be safe.  As always, use your own judgement.  Get the EXE version. The download is a .zip file, drag & drop (64bit) SetACL.exe to a work directory.

Then download the powerShell script files to the same work directory:
2. Open Windows PowerShell (Run as Administrator)

3. If you haven't used PowerShell before, you need to enable downloaded scripts with command (without PS C:\WINDOWS\system32>):

PS C:\WINDOWS\system32> set-ExecutionPolicy Unrestricted
   (Reply A when prompted)
When finished restore the protected policy with
PS C:\WINDOWS\system32> set-ExecutionPolicy Undefined
To view the policy settings use
PS C:\WINDOWS\system32>  get-ExecutionPolicy -list

4. Change to your directory with
PS C:\WINDOWS\system32> cd [YourDirectoryPath]

For example, if directory is Desktop: PS C:\WINDOWS\system32> cd ~\Desktop
You need to run the script from the same directory where SetACL.exe is located!!!

The directory is also used for logs and registry snapshots.

5. Invoke the script with:
   PS C:\Users\DownloaderGa\Desktop> .\CryptSvcAdminSetAclFix.ps1
in the Adminstrator: PowerShell console.
  • If success, will be:
Start logging to C:\Users\DownloaderGa\Desktop\CryptSvcAdminSetAclFix.ps1.log
Needs: PowerShell runAs admin
with Set-ExecutionPolicy Unrestricted
(Reply R when prompted)
and SetACL.exe in current folder
Uses script folder: C:\Users\DownloaderGa\Desktop
for logs and registry snapshots
Assumes user owns the script folder.
Rev: ib03 with SID auto-chk, no LT tfile, usage refs folder dir
PS_SID: S-1-5-21-4176249515-117852638-1264263521-1001

Testfile:C:\Users\DownloaderGa\Desktop
owner SID: S-1-5-21-4176249515-117852638-1264263521-1001
HKey: HKCU

reg export HKCU\Software\Microsoft\SystemCertificates\Root as HKCUcertRoot.reg
The operation completed successfully.

reg export HKCU\Software\Microsoft\SystemCertificates\Root\Certificates as HKCUcerts.reg
The operation completed successfully.

log HKUSid \Software\Microsoft\SystemCertificates\Root permissions
and HKUSid \Software\Microsoft\SystemCertificates\Root\ProtectedRoots permissions
as C:\Users\DownloaderGa\Desktop\ProtRoots.log

SetACL.exe -on HKCU\Software\Microsoft\SystemCertificates\Root\ProtectedRoots -ot reg -actn setowner -ownr n:Administrators
Processing ACL of: <current_user\Software\Microsoft\SystemCertificates\Root\ProtectedRoots>

SetACL finished successfully.
SetACL.exe -on HKCU\Software\Microsoft\SystemCertificates\Root\ProtectedRoots -ot reg -actn ace -ace n:Administrators;p:full
Processing ACL of: <current_user\Software\Microsoft\SystemCertificates\Root\ProtectedRoots>

SetACL finished successfully.
SetACL.exe -on HKCU\Software\Microsoft\SystemCertificates\Root -ot reg -actn setowner -ownr n:Administrators
Processing ACL of: <current_user\Software\Microsoft\SystemCertificates\Root>

SetACL finished successfully.
SetACL.exe -on HKCU\Software\Microsoft\SystemCertificates\Root -ot reg -actn ace -ace n:Administrators;p:full
Processing ACL of: <current_user\Software\Microsoft\SystemCertificates\Root>

SetACL finished successfully.
The Cryptographic Services service is stopping..
The Cryptographic Services service was stopped successfully.

reg delete HKCU\Software\Microsoft\SystemCertificates\Root\ProtectedRoots /f
The operation completed successfully.

reg delete HKCU\Software\Microsoft\SystemCertificates\Root /f
The operation completed successfully.

reg import HKCUcerts.reg (before CryptSvc start)
reg : The operation completed successfully.
The Cryptographic Services service is starting.
The Cryptographic Services service was started successfully.
  • If error like:
.\CryptSvcAdminSetAclFix.ps1 : File C:\Users\DownloaderGa\Desktop\CryptSvcAdminSetAclFix.ps1 cannot be
loaded because running scripts is disabled on this system. For more information, see
about_Execution_Policies at https:/go.microsoft.com/fwlink/?LinkID=135170.
At line:1 char:1
+ .\CryptSvcAdminSetAclFix.ps1
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : SecurityError: (:) [], PSSecurityException
+ FullyQualifiedErrorId : UnauthorizedAccess

You need to run this first:
PS C:\Users\DownloaderGa\Desktop>set-executionpolicy remotesigned
Then again run:
PS C:\Users\DownloaderGa\Desktop> .\CryptSvcAdminSetAclFix.ps1

6. After that, it will display a page of progress info, which is logged as
PS C:\Users\DownloaderGa\Desktop> .\CryptSvcAdminSetAclFix.ps1.log

Done. Goodluck with this trick to fix error Chrome doesn't work when Edge doesn't run.

Source: http://123link.pro/1yb1

Labels: , ,

Tuesday, October 24, 2017

Limited WiFi Access in Windows [Solved]

Limited WiFi Access in Windows [Solved]

When your computer cannot connect with the wireless router (There is a yellow exclamation mark besides the WLAN icon. Wireless connection shows “limited access”), you can fix with these methods:
Limited-WiFi-Access-in-Windows-[Solved]

Method 1: Restart computer

This is an extremely common step for nearly any computer problem, and since the network issue may be tied up in your computer software, you should start with a reboot. You may have already tried this step, in which case you can move down to the next one.

Method 2: Reboot your router or modem

Note: reboot, not reset. Rebooting is just powering it down and then turning it back on, while resetting the router means to restore all of its settings back to default – a step that’s a bit more destructive than what we’re after right now.

Method 3: Reset the Windows TCP/IP

Limited-WiFi-Access-in-Windows-[Solved]

Run this command in an elevated Command Prompt (Window + R then type cmd -> Enter) to reset the Windows TCP/IP stack to its original state, a step that often fixes lots of network related issues:
netsh int ip reset C:\resetlog.txt

Method 4: Uncheck the option that lets the computer turn off the device to save power

Limited-WiFi-Access-in-Windows-[Solved]

If on Wi-Fi when you see this error, it’s possible that the network adapter is going to sleep to conserve power. You can stop this from happening in the Power Management tab of the adapter.
Here’s how: Find the Network and Sharing Center in Control Panel. Right-click the Wi-Fi connection, go into Properties, then hit the Configure button, and find the Power Management tab. Uncheck the option that lets the computer turn off the device to save power.

Method 5: Set obtains an address automatically from the DHCP server

If your network is using DHCP, first find your local IP address. If the IP address is set to a static IP address, you need to change the adapter’s settings so that it obtains an address automatically from the DHCP server. Follow the directions here to find the DHCP settings in Windows, and make sure that DHCP ends up enabled and that there isn’t a specific IP address recorded for the adapter. If the local IP address your computer is using, starts with 169.254, it means it’s invalid and isn’t obtaining a useful address from the router. Try running the commands

ipconfig /release
and then
ipconfig /renew

in a Command Prompt.

Method 6: Set static IP address

Limited-WiFi-Access-in-Windows-[Solved]

If obtains an address automatically from the DHCP server were set, but error still can not fix, let set static IP address.
In Wifi properties, double click on Internet Protocol Version 4 (TCP/IPv4)

Select Use the following IP address, in IP address, type 192.168.1.x, where x is a number from 2 – 255. Select 255.255.255.0 In Subnet mask in Default gateway, type 192.168.1.1.
Limited-WiFi-Access-in-Windows-[Solved]

In Prefered DNS server and Alternate DNS server, type Google DNS: 8.8.8.8 and 8.8.4.4.

Method 7: Update the device driver for the network card

Limited-WiFi-Access-in-Windows-[Solved]

Try updating the device driver for the network card. An outdated card or corrupted driver might be the problem.

Method 8: Troubleshoot problems


Limited-WiFi-Access-in-Windows-[Solved]

If Windows prompts you to have it try to fix the connection itself itself, then agree to that and run the Network Troubleshooter or Network Repair utility (they’re called different names depending on your version of Windows).
Right click on Wireless icon, select Troubleshoot problems.

Method 9: Disable WMM for Broadcomm WLAN


Limited-WiFi-Access-in-Windows-[Solved]

For Broadcom Wireless LAN, Open Device Manager, Select Network Adapters, double click Broadcom 802.11n Network Adapter, open Broadcom 802.11n Network Adapter Properties, Select Advanced tab, select WMM as shown in fig below, set WMM to Disabled, click OK.

Method 10: Contact the router manufacturer for additional support

Limited-WiFi-Access-in-Windows-[Solved]

If there’s still no connection, unplug your router and connect the computer directly to your modem. If this configuration works, and you no longer see the error, your router might be malfunctioning. Contact the router manufacturer for additional support. However, if the error remains and the network still appears to be down, contact your internet service provider for support – the problem may lie with them.

Labels: , , ,