...
- Determine Hardware Requirements
- Database Server
- Application Server
- Workstations
- Determine Application Deployment Method
- Workstation Install
- Citrix / Remote Desktop / Terminal Services
- Determine Software Requirements
- SQL Server 2008+
- Windows Server 2012
- Citrix / Remote Desktop / Terminal Services
- Order Hardware
- Order Software
- Configure Hardware
- Configure Software
- Setup Windows Servers
- Setup SQL Server
- Setup Command Shell Access in SQL for AR Import Receivables to work.
-- To allow advanced options to be changed.
EXEC sp_configure 'show advanced options', 1
GO
-- To update the currently configured value for advanced options.
RECONFIGURE
GO
-- To enable the feature.
EXEC sp_configure 'xp_cmdshell', 1
GO
-- To update the currently configured value for this feature.
RECONFIGURE
GO
- Setup Deployment Method
...