### Example GP_LoginErrors.log File Content Source: https://github.com/microsoftdocs/msftdynamicsgpdocs/blob/main/dynamics-gp/installation/SystemAdminGuide.md This log file helps identify issues with product installation and version mismatches between the client and server. Review the 'Product Name', 'Database Version', and 'Client Version' fields to diagnose problems. ```log Product Name: Human Resources Error: Product is not installed to the database server Product Name: Fixed Assets Database Version 11.00.07 Client Version: 11.00.10 ``` -------------------------------- ### Install Web Components MSP File Source: https://github.com/microsoftdocs/msftdynamicsgpdocs/blob/main/dynamics-gp/web-components/single-machine-upgrade.md Use this command to install the web components update by specifying the .msp file. Ensure you are in the correct directory on the installation media. ```batch msiexec /update filename.msp ``` -------------------------------- ### SQL Queries for Timecard Batch Setup Source: https://github.com/microsoftdocs/msftdynamicsgpdocs/blob/main/dynamics-gp/payroll/PayrollUS.md These SQL queries access data related to timecard batch prefix setup, including batch prefix definitions and assignments by location, department, job title, employee class, and employee ID. ```sql SELECT * FROM UPR42500 – Batch Prefix ``` ```sql SELECT * FROM UPR42501 - Location ID ``` ```sql SELECT * FROM UPR42502 - Department ``` ```sql SELECT * FROM UPR42503 - Jobtitle/Position ``` ```sql SELECT * FROM UPR42504 - Employee Class ``` ```sql SELECT * FROM UPR42505 - Employee ID ``` -------------------------------- ### Install MSP Update using Command Prompt Source: https://github.com/microsoftdocs/msftdynamicsgpdocs/blob/main/dynamics-gp/payroll/CAN18YETax.md Use this command in an administrator-level Command Prompt to apply a Microsoft Dynamics GP update (.msp file). Ensure the path to the .msp file and the log file are correct. This command is useful when UAC is active and you need to install updates programmatically. ```cmd Msiexec /p MicrosoftDynamicsGP18-KB5054790-ENU.msp /l\*v C:\\MSPErrorlog.txt ```