Entradas

Mostrando las entradas de septiembre, 2024

PRINTER MAKES PING BUT DOESN'T PRINT - COMMON ERRORS IN PRINTING

 A common error when we configure a printer is send a test paper but it doesn't work properly, the question is what to do in this type of situation, since my experience I would like to share with you some solutions: 1. Make sure the printer is connected to network via Ethernet or WIFI or WIFI DIRECT in some models you can verify that going to the display and check there whether is recognized and configured, I think this is the first thing you have to do when you want to configure any printer :), also to verify if a PC is connected to it you can make ping to the ip address of the printer. 2. Make sure in the printer the Mask it could be 255.255.255.0 but you have the printer/PC in another mask it could make ping but it won't send the print properly, make sure you have the same mask in both. the mask of subneting allow to device find if the another is in the same network.

RUN AS ADMINISTRATOR BEING LOCAL USER WINDOWS

Imagen
When you are a local user in windows you will face with the picture 1 when you want to run any program as administrator. picture 1. Now the solution is setting the  target in desktop icon like this using this code: C:\Windows\System32\cmd.exe /min /C "set __COMPAT_LAYER=RUNASINVOKER && start "" "C:\Program Files\SAP\SAP Business One\SAP Business One.exe"" Just that run the icon again and should be work.   Explanation of code: command that runs SAP Business One with specific settings in Windows Command Prompt (cmd.exe) . Here's a breakdown of what it does: C:\Windows\System32\cmd.exe : This is calling the Windows Command Prompt, the built-in command-line interpreter for Windows. /min : This option minimizes the Command Prompt window when it runs. /C : This tells the Command Prompt to run the command that follows and then terminate. set __COMPAT_LAYER=RUNASINVOKER : __COMPAT_LAYER is an environment variable in Windows that allows you to specify...