I'm publishing and shipping a small .NET application whose MSI installer requires the IT guy to input login/password in order for the MSI to start a command line and schedule several tasks during the installation process.
The IT guy is required to use a UPN or Down-Level Logon Name of a windows account which is granted built-in administrator privileges.
Since the application is meant to go global, I was wondering how could I fit in an UPN like ユーザー (japanese windows logon name 'User') in my command line :
SchTasks /Create /XML "task1.xml" /tn "Task 1" /RU "ユーザー" /RP password /F
The example above use japanese character set but it could be any non-latin character set,
Any help or advice appreciated on how to proceed,