0

尝试在我的本地 PC 上部署一个包并连接到我的客户端的 vpn。

我得到错误:

c:\Program Files\Microsoft SQL Server\110\DTS\Binn>dtutil /File c:\www\clients\SomeCompany\ssis\warehouse\Warehous
e_Update_Table1.dtsx /DestServer SomeServerName /Copy sql;Warehouse_Update_Table1
Microsoft (R) SQL Server SSIS Package Utilities
Version 10.50.1600.1 for 64-bit


Error (0xC0014014) while checking for the existence of package "Warehouse_Update_Table1" on SQL Server.
Could not save package "Warehouse_Update_Table1" because of error 0x80004005.
Description: Login failed. The login is from an untrusted domain and cannot be used with Windows authentication.
Source: Microsoft SQL Server Native Client 10.0

    c:\Program Files\Microsoft SQL Server\110\DTS\Binn>dtutil /File c:\www\clients\SomeCompany\ssis\warehouse\Warehouse_Update_Table1.dtsx /DestServer SomeServerName.SomeDomain.net /Copy s
    ;Warehouse_Update_TestTable1
    c:\Program Files\Microsoft SQL Server\110\DTS\Binn>dtutil /File c:\www\clients\SomeCompany\ssis\tmlwarehouse\Warehouse_Update_Table1.dtsx /DestServer/SomeServerName.SomeDomain.net /Copy sql;Warehouse_Update_Table1

(obviously I have real values for "SomeCompany" and SomeServerName.SomeDomain"

有没有办法提升权限,比如你可以用 .exe 做什么来指定发件人的域或提升这个请求,所以这个东西可以工作?

不幸的是,我们使用 Windows auth 来调用它,因为这就是客户端蚂蚁。

4

1 回答 1

0

看看将 runas 与 netonly 选项一起使用:

runas.exe /netonly /user:DOMAIN\DOMAINUSERNAME Dtutil.exe

它是“DTUtil.exe”

于 2012-09-01T06:07:25.433 回答