Jump to content

SDothard

Members
  • Posts

    3
  • Joined

  • Last visited

SDothard's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. I think I may have answered my own question. Should I first convert my pdf into an image and then use the udf to import an image and overlay data where the data fields are?
  2. HI I'm pretty new to Autoit, and I have a question about creating pdf's from my application. I got the udf working, but I need to know if this is possible. take an existing pdf that accepts user input (name, dob, date, etc) somehow import that pdf template into autoit call data from autoit to populate the data fields then print the pdf template with the autoit data in the data fields Is this possible with this udf? I appreciate any help.
  3. I'm pretty new to autoit scripting and USMT. I'm trying to migrate my agencies windows xp to Windows 7. I just need to migrate the current logged users profile, but I am trying to copy everything except the "Local Settings" in the users profile. Here is my script and error log. This is my custom config.xml (is the "%CSILD_PROFILE% used correctly?) <?xml version="1.0" encoding="UTF-8"?> <migration urlid="http://www.microsoft.com/migration/1.0/migxmlext/LocalSettings"> <component type="Documents" context="user"> <displayName>LocalSettings</displayName> <role role="Data"> <rules> <include> <objectSet> <pattern type="File">%CSIDL_PROFILE%* [*]</pattern> </objectSet> </include> <exclude> <objectSet> <pattern type="File">%CSIDL_PROFILE%Local Settings* [*]</pattern> </objectSet> </exclude> </rules> </role> </component> </migration> For my autoit script I'm using the User State Migration Tool Front End ;~ Coded by Ian Maxwell (llewxam @ AutoIt forum) Here are my scanstate lines. If $XPMode == False Then _Extract($XPMode) ShellExecuteWait(@TempDir & "USMTscanstate.exe", Chr(34) & $TargetPath & Chr(34) & " /config:config.xml /localonly /vsc /efs:decryptcopy" & $OverwriteArg & $NoCompressArg & $OfflineArg & " /r:" & $TimesToRetryArg & " /w:" & $SecondsToWaitArg & " /L:" & Chr(34) & $LogFile & Chr(34) & " /v:13 /c /ue:** /uel:0 /i:" & @TempDir & "USMTMigApp.xml /i:" & @TempDir & "USMTMigDocs.xml /i:" & @TempDir & "USMTMigUser.xml", @TempDir) Else _Extract($XPMode) ShellExecuteWait(@TempDir & "USMTscanstate.exe", Chr(34) & $TargetPath & Chr(34) & " /config:config.xml /targetxp /localonly /efs:decryptcopy" & $OverwriteArg & $NoCompressArg & " /r:" & $TimesToRetryArg & " /w:" & $SecondsToWaitArg & " /L:" & Chr(34) & $LogFile & Chr(34) & " /v:13 /c /ue:** /uel:0 /i:" & @TempDir & "USMTMigApp.xml /i:" & @TempDir & "USMTMigSys.xml /i:" & @TempDir & "USMTMigUser.xml", @TempDir) EndIf Do Please help.
×
×
  • Create New...