Get the username displayed in the textbox automatically in wix
I have developed a screen that asks the admin username and password.My requirement is that I want the admin user and doma开发者_开发问答in name to be displayed automatically on the screen in the username label.How can i do that please help me..
You could try the following (untested). WIX accepts environment-variables with [%variable]
<Control Id="Uname" Text="[%USERNAME]" Type="Text">
<Control Id="Udomain" Text="[%USERDOMAIN]" Type="Text">
精彩评论