gpt4 book ai didi

c++ - 使用命令行参数创建快捷方式

转载 作者:行者123 更新时间:2023-11-28 03:37:30 25 4
gpt4 key购买 nike

使用链接上提供的代码: http://msdn.microsoft.com/en-us/library/aa969393.aspx

HRESULT CreateLink(LPCWSTR lpszPathObj1, LPCSTR lpszPathLink, LPCWSTR lpszDesc) 
{
HRESULT hres;
IShellLink* psl;

// Get a pointer to the IShellLink interface. It is assumed that CoInitialize
// has already been called.
hres = CoCreateInstance(CLSID_ShellLink, NULL, CLSCTX_INPROC_SERVER, IID_IShellLink, (LPVOID*)&psl);
if (SUCCEEDED(hres))
{
IPersistFile* ppf;

// Set the path to the shortcut target and add the description.
psl->SetPath(lpszPathObj1);
psl->SetDescription(lpszDesc);

// Query IShellLink for the IPersistFile interface, used for saving the
// shortcut in persistent storage.
hres = psl->QueryInterface(IID_IPersistFile, (LPVOID*)&ppf);

if (SUCCEEDED(hres))
{
WCHAR wsz[MAX_PATH];

// Ensure that the string is Unicode.
MultiByteToWideChar(CP_ACP, 0, lpszPathLink, -1, wsz, MAX_PATH);

// Add code here to check return value from MultiByteWideChar
// for success.

// Save the link by calling IPersistFile::Save.
hres = ppf->Save(wsz, TRUE);
ppf->Release();
}
psl->Release();
}
return hres;
}

我正在尝试在桌面上创建一个快捷方式,目标 (exe) 接受命令行参数。我尝试通过以下方式设置目标:

LPCWSTR lpszPathObj1 = L"C:/Folder1/Folder2/SomeApp.exe 690080776072629&734078";

使用 Target 创建快捷方式:

"C:/Folder1/Folder2/SomeApp.exe 690080666072629&782078"

LPCWSTR lpszPathObj1 = L"C:/Folder1/Folder2/SomeApp.exe\" 690080776072629&734078";

创建带有空白目标的快捷方式。

我尝试了更多选项,但没有用。有人可以帮忙吗?

最佳答案

我假设您提到的字符串已传递给 psl->setPath()。它只是传递将由链接调用的可执行文件,您不应该将参数放在同一个字符串中。相反,在那之后调用 psl->setArguments(),只使用参数。字符串中的双引号没有区别,只有当其中一个参数中有空格时才需要它们。

关于c++ - 使用命令行参数创建快捷方式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10417290/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com