我尝试了以下命令:
$ wget -q --tries=10 --timeout=20 --spider http://google.com
Run Code Online (Sandbox Code Playgroud)
(来自this SO post。我想在bash中检查我的互联网连接。)
我得到以下输出:
Spider mode enabled. Check if remote file exists.
--2015-09-28 09:55:50-- http://google.com/
Connecting to 127.0.0.1:3128... connected.
Proxy request sent, awaiting response... 302 Found
Location: http://www.google.de/?gfe_rd=cr&ei=k_IIVreaN-yH8Qfe1Yu4CA [following]
Spider mode enabled. Check if remote file exists.
--2015-09-28 09:55:50-- http://www.google.de/?gfe_rd=cr&ei=k_IIVreaN-yH8Qfe1Yu4CA
Connecting to 127.0.0.1:3128... connected.
Proxy request sent, awaiting response... 200 OK
Length: unspecified [text/html]
Remote file exists and could contain further links,
but recursion is disabled -- not retrieving.
Run Code Online (Sandbox Code Playgroud)
似乎没问题,但是运行 …
我曾经在设置新的 Windows 8 安装时,通过以下命令通过 Powershell 卸载每个应用程序:
Get-AppxPackage | Remove-AppxPackage
Run Code Online (Sandbox Code Playgroud)
它删除了除一些非常基本的应用程序之外的所有应用程序,例如商店应用程序本身。
然而,在 Windows 10 中,此命令似乎也删除了 Store 应用程序。我的问题是我怎样才能把它找回来。在浏览器商店页面中,单击应用程序进行安装时没有任何反应。而且商店本身也找不到。
我知道有命令,Get-AppxPackage <packagename>但我不知道商店本身。
有人可以帮我解决这个问题吗?