A server stack is the collection of software that forms the operational infrastructure on a given machine. In a computing context, a stack is an ordered pile. A server stack is one type of solution stack — an ordered selection of software that makes it possible to complete a particular task. Like in this post about What happens if you “print” an application or program in Windows? was one problem in server stack that need for a solution. Below are some tips in manage your windows server when you find problem about windows, printing, users, malicious, .
What happens if you right click on an application/program in Windows, and click “Print”? I accidentally almost did this when I right clicked a program icon to open from the desktop, but accidentally clicked “Print”. I closed out before proceeding. I am very curious if it would do anything bad, or maybe just print the icon, but am wary to try it on my own system :-). I am asking here because if it does do something bad, admins may want to be aware of any negative effects that could happen. I did a Google search and didn’t see anything helpful.
Nothing happens. Its weird that you got that option i have Never seen it before. You must of right clicked a logo of a application or you must of right clicked a word doc and hit print.
Anyways thats how you learn how to do stuff through trial and error.
A program (exe file) wouldn’t have a “Print” option when right clicked. So you may be mixing the stuff you right clicked?
If the program supports the “Print” verb and told this to Windows Explorer, Windows will show you the “Print” option in the context menu when you right-click on a file/shortcut supported by the program.
Basically, Windows starts a specific command to tell the program that the user wants to print this document. For example, if it’s a Word document, you can find the Print command definition here in the registry:
HKEY_CLASSES_ROOTWord.Document.12shellPrintcommand
"C:Program Files (x86)Microsoft OfficeRootOffice16WINWORD.EXE" /i "%1"
You can learn more about this implementation here: https://docs.microsoft.com/fr-fr/windows/desktop/shell/context-menu-handlers#completing-verb-implementation-tasks
Note that if you select more than 15 documents, the print command won’t be available to prevent any “problems”.