Allscripts page 1 of 1 for 8 posts
A quick Powershell script I hacked together that will enumerate all Active Directory users, and build an XML file for an application I wrote that generates user reports for a specific application.
The output file format is similar to:
<quickreports>
<report name=Organizational Unit>
<database name=v001/>
<usrlogin name=jdoe01/>
</report>
<quickreports>
$ErrorActionPreference= 'silentlycontinue'
$arr=@{}
foreach ($usr in Get-ADUser -Filter * | select
Continue Reading...
Follow the steps below against correct EHR database in SQL Management Studio if you want to change the pointers yourself.
select * from HPSITE.SCAN_DOCUMENTPAGEUpdate the Document Page from the old Server to the new Server:
UPDATE HPSITE.SCAN_DOCUMENTPAGE
SET FILELOCATION = REPLACE(FILELOCATION,'\OLDserver\Hmscan','\NEWserver\hmscan')
Update the Scan Job from the old Server to the new Server:
UPDATE HPSITE.SCAN_JOB
SET DIRECTORY= REPLACE(DIRECTORY,'\OLDserver\Hmscan','\NEWserver\hmscan')
Update
Continue Reading...