Index: dll/win32/shell32/shelllink.c =================================================================== --- dll/win32/shell32/shelllink.c (revision 52224) +++ dll/win32/shell32/shelllink.c (working copy) @@ -2663,6 +2663,13 @@ TRACE("sArgs: %S sComponent: %S sDescription: %S sIcoPath: %S sPath: %S sPathRel: %S sProduct: %S sWorkDir: %S\n", This->sArgs, This->sComponent ,This->sDescription, This->sIcoPath, This->sPath, This->sPathRel, This->sProduct, This->sWorkDir); + /* target location */ + wchar_t * wTrgtLocat; + int ch = '\\'; + wTrgtLocat = wcsrchr( This->sWorkDir, ch )+1; + hDlgCtrl = GetDlgItem( hwndDlg, 14007 ); + SendMessageW( hDlgCtrl, WM_SETTEXT, (WPARAM)NULL, (LPARAM)wTrgtLocat ); + /* target path */ hDlgCtrl = GetDlgItem( hwndDlg, 14009 ); if ( hDlgCtrl != NULL )