1

我正在尝试将我的应用程序的快捷方式保存在启动文件夹中。这一切都可以编译,但它无法真正保存游戏。错误似乎发生在hres = ppf->Save(wsz, TRUE);,hrs 设置为 -2147024891。如果这意味着特定的东西,我还没有发现什么。我的代码几乎是从 MSDN 逐字复制的,所以我很困惑为什么它不起作用。也许我没有权限将快捷方式保存到启动文件夹?再说一次,我对这一切也很陌生,所以这可能是我犯的一些基本错误。我也在复制我所有的#includes,以防万一出现问题。

编辑:
首先,为避免混淆,这是基于 CLI 的 C++。

检查 hres 是否有错误只是 MDSN 代码的一部分。这实际上与网站示例中的代码几乎完全相同。我已经设置了断点,这就是我知道在该行hres = ppf->Save(wsz, TRUE);运行后hrs变成-2147024891的方式。

如果这些错误,mediaMaestroLocation 设置为"C:\Users\Keith\Documents\Visual Studio 2012\Projects\MediaMaestro\Debug\MediaMaestro.exe",startupDestination 为"C:\Users\Keith\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup"。虽然 exe 位置看起来不错,但我想知道在目标文件夹路径之后没有 \ 是否重要。我已经检查过了,但我需要先花几分钟弄清楚如何做。

#include <windows.h>
#include <string>
#include <stdio.h>
#include <shobjidl.h>
#include <shlobj.h>
#include "objbase.h"
#include <objidl.h>
#include <shlguid.h>
#include <winnls.h>

#using <System.dll>
#using <System.Windows.Forms.dll>

using namespace System;
using namespace System::Windows::Forms;

char startupDestination[MAX_PATH];
char mediaMaestroLocation[MAX_PATH];

DWORD nChars = 0;
BOOL yChars = 0;

HRESULT CreateLink() 
{ 
    CoInitializeEx( NULL, 0 );
    HRESULT hres = 0;
    IShellLink* psl; 

    if (SUCCEEDED(hres)) 
    { 

        // 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(mediaMaestroLocation); 
            psl->SetDescription("Media Maestro"); 

            // 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, startupDestination, -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(); 
        }
    }
    CoUninitialize();
    return hres; 
}


这是调用该函数的 UI 中的单击事件:

void settingsLaunchOnStart_Click( Object^ Sender, EventArgs^ e )
   {

       if (settingsLaunchOnStart->Checked == false)
       {
            HRESULT r;
            nChars = GetModuleFileName( NULL, mediaMaestroLocation, sizeof(mediaMaestroLocation) );
            yChars = SHGetFolderPath( NULL, CSIDL_STARTUP, NULL, SHGFP_TYPE_CURRENT, startupDestination);
            r = CreateLink();
       }
       else if (settingsLaunchOnStart->Checked == true)
       {

        //code to remove the shortcut
       }
   }



有什么我想念的吗?

4

2 回答 2

3

事实证明,仅命名输出文件夹路径是不够的,我还必须命名文件和扩展名。考虑到我认为我没有见过其他例子这样做,这对我来说似乎很奇怪。无论如何,这是我更新的工作代码:

HRESULT CreateLink() 
{ 
    CoInitializeEx( NULL, 0 );
    HRESULT hres = 0;
    IShellLink* psl; 

    if (SUCCEEDED(hres)) 
    { 

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

            // Set the path to the shortcut target and add the description. 
            psl->SetPath(mediaMaestroLocation);
            psl->SetDescription(L"Media Maestro"); 
            psl->SetIconLocation(mediaMaestroLocation, 0);

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

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

                // Save the link by calling IPersistFile::Save. 

                hres = _wmakepath_s( wsz, _MAX_PATH, NULL, startupDestination,
                      L"MediaMaestro", L"lnk" );

                hres = ppf->Save(wsz, TRUE); 
                ppf->Release(); 
            }
            psl->Release(); 
        }
    }
    CoUninitialize();
    return hres; 
}



添加_wmakepath_s让我可以将我的程序名称及其扩展名附加到我从中获得的文件路径中SHGetFolderPath。一旦我将它输入 IPersistFile 接口,它就会按原样保存。

于 2013-09-02T04:42:06.930 回答
0

您只将 hres 初始化为 0,然后您检查它是否成功?你从来没有真正在某处声明它,-2147024891 可能意味着该变量尚未初始化。

一个疯狂的猜测是它甚至从来没有达到:hres = ppf->Save(wsz, TRUE);行,因此它没有被初始化:P 尝试在调试时放置一些断点,并且可能使用一些手表来查看变量:)

此致。

于 2013-09-01T01:53:33.520 回答