robertkjr3d
Programmer
Let's start with the bottom line:
I can login to the machine as Administrator... and the command line product works.
When I run the same command line app from xp_cmdshell running as the same user 'administrator' it does not.
Long Description:
I have this software that I'm calling from xp_cmdshell (for your awareness it is imageconverter plus). However the product annoyingly when you buy a registration license it only works for the user that you activate the license for on the machine.
In this case I registered the product for the Administrator user. And I can run on the command line logged into the machine as 'Administrator' and it works fine.
However when I run the product from XP_CmdShell, it tells me that the product is in trial mode.
Yet when I run this query:
declare @cmd varchar(5000)
set @cmd = 'whoami'
exec master..xp_cmdshell @cmd
It comes back saying it is 'Administrator', the same user that I registered the license for. Is it prevented from reading the registry or something?
I am also trying to get tech support from the folks at imageconverter but he is just trying to get me to buy a more expensive product from them that licenses the whole machine.
I can login to the machine as Administrator... and the command line product works.
When I run the same command line app from xp_cmdshell running as the same user 'administrator' it does not.
Long Description:
I have this software that I'm calling from xp_cmdshell (for your awareness it is imageconverter plus). However the product annoyingly when you buy a registration license it only works for the user that you activate the license for on the machine.
In this case I registered the product for the Administrator user. And I can run on the command line logged into the machine as 'Administrator' and it works fine.
However when I run the product from XP_CmdShell, it tells me that the product is in trial mode.
Yet when I run this query:
declare @cmd varchar(5000)
set @cmd = 'whoami'
exec master..xp_cmdshell @cmd
It comes back saying it is 'Administrator', the same user that I registered the license for. Is it prevented from reading the registry or something?
I am also trying to get tech support from the folks at imageconverter but he is just trying to get me to buy a more expensive product from them that licenses the whole machine.