How to shutdown Windows 10 PC using cortana? [closed] - windows

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 6 years ago.
Improve this question
I got Cortana yesterday and was getting along with it.But when I said Shutdown, it just searched Bing for Shutdown. I want Cortana to shut down my PC, how to do this?

This creates a shortcut that Cortana can invoke, the target of the shortcut is the Windows shutdown.exe utility.
Goto C:\Users\ {Your Username} \AppData\Roaming\Microsoft\Windows\Start Menu\Programs
Create a new shortcut
In location, type shutdown -s -t 10 -c "Your Comment" (without the quotes)
Now name it whatever you want.
Done
-s is for shutting it down and -r for restarting it. -t is the timer in seconds.
-c is the comment which appears when going to shut down. This is a youtube video which shows how to do it.

Related

In windows how to create a shortcut to make a system to shutdown or sleep? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 1 year ago.
Improve this question
how to make a shortcut icon to make our pc to sleep or shutdown.
this is the desktop
Make a new txt file with content:
shutdown /s
and change the file extension to .bat. Place it on the desktop and double-click to shutdown.
You can also make a shortcut and in the "target" location, you can type in this
cmd /k shutdown -f -p
I'm not sure about the rundll one, it might be malicious to be honest
Do the below steps:
Right-click in any blank area of your desktop
Choose New > Shortcut
Copy/paste the command RUNDLL ….. 0,1,0
Click Next
For the name of the shortcut, enter “Put to Sleep Immediately”
Click Finish

Cortana doesn't allow to me type more than 2 letters in searchbox and hanged in windows 10 [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 4 years ago.
Improve this question
Cortana opens smoothly but doesn't allow me to type more than 2 letters in the search box. After some time, it is hanged and Cortana disappears.
I had to face this issue too, I did not get the solution even after doing lots of research on the internet, Even Microsoft Advisor told me about reinstall windows
And finally, I found an alternate solution: Classic Shell.
you can use a classic shell. classic shell Make Windows 10 Look and Feel Like Windows 7
Follow the steps:
Go here and download classic shell - http://www.classicshell.net/
Install classic shell on your local computer
After install, select the style for start menu
Disable Cortana from the taskbar in Windows 10
Done, You will now feel the look of windows 7
For more details open link:- https://www.youtube.com/watch?v=SCnEhqmfZgc

cmd refuses all commands [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 6 years ago.
Improve this question
With W7x64, all commands ("mkdir", "ping", "ipconfig", or the installed "composer") grant an "access refused" error.
I shut down firewall (Comodo), disabled UAC, launched cmd as administrator, created a brand new administrator session, checked and altered owning permissions (setting them to my account), and, of course, restarted the damn machine.
Last piece of information, but I don't think it has any relevance : system is on SSD.
Edit : Here is a screen shot:
I can't figure what happened to my command line, but installing an alternative (I choose conemu) makes things returning to their old self again.

How to stop installing updates in Windows 7 after restart? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 7 years ago.
Improve this question
My Windows 7 started installing updates on shutdown. After I manually forced shutdown by mistake, after restart I have a message : "Installing updates : 10 of 42", i.e. the installation of updates continues. If there is any way to stop the process? Like, start Windows in protected mode or something similar, as it was available in Windows XP?
I am not asking how to disable automatic updates installation in the future, I am asking how to stop the update process after it has already been started.
Thanks,
Kostya
There is no way to kill installing process after it started but just to long press the power button and disable the automatic after restarted.
SOLUTION !
1) create a .bat (CMD) file, with this code:
sc stop wuauserv
2) put that file in STARTUP folder ( %appdata%\Microsoft\Windows\Start Menu\Programs\Startup )

behavior of windows while restarting of service [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 8 years ago.
Improve this question
The question is while restarting the windows service whether windows kills the service or it waits for the process to finish. As i remember in linux the "restart" command will kill all the child process.
Thanks in advance. I searched the question in this forum but didn't find.
Restarting a service is just shorthand for 'stop service and start service.' So, the service gets a chance to shut down normally and then it gets a chance to start up normally.
You can see this by restarting a service in the Services MMC snap-in. I tried this on Windows 7 and the sequence UI went like this:
Windows is attempting to stop the following service on Local Computer
followed by
Windows is attempting to start the following service on Local Computer

Resources