mirror of
https://github.com/reactos/reactos.git
synced 2025-05-23 19:14:48 +00:00
[SYSSETUP]
- Create shortcuts after shell32 registration. Fixes shortcuts not being created during installation. svn path=/trunk/; revision=54712
This commit is contained in:
parent
8fa9f7b979
commit
2397b92402
1 changed files with 7 additions and 7 deletions
|
@ -893,12 +893,6 @@ InstallReactOS(HINSTANCE hInstance)
|
|||
return 0;
|
||||
}
|
||||
|
||||
if (!CreateShortcuts())
|
||||
{
|
||||
FatalError("InitializeProfiles() failed");
|
||||
return 0;
|
||||
}
|
||||
|
||||
/* Initialize the Security Account Manager (SAM) */
|
||||
if (!SamInitializeSAM())
|
||||
{
|
||||
|
@ -983,6 +977,12 @@ InstallReactOS(HINSTANCE hInstance)
|
|||
RtlFreeSid(AdminSid);
|
||||
RtlFreeSid(DomainSid);
|
||||
|
||||
if (!CreateShortcuts())
|
||||
{
|
||||
FatalError("CreateShortcuts() failed");
|
||||
return 0;
|
||||
}
|
||||
|
||||
/* ROS HACK, as long as NtUnloadKey is not implemented */
|
||||
{
|
||||
NTSTATUS Status = NtUnloadKey(NULL);
|
||||
|
|
Loading…
Reference in a new issue