kkuzil.own@gmail.com

Posted
Filed under Development/etc.
visual c++ 2005 sp1 런타임 패키지를 배포하고 싶은데 사용자 눈에 거슬리지 않게 조용히 배포하고 싶었다.
그래서 관련 옵션을 찾는중 "vcredist_x86.exe /q" 가 있었는데 이건 자동 설치이고..
내가 원하는건 설치 화면까지 보이지 않는것있는데... 그래서 방법을 찾아보았다.

vcredist_x86.exe /q:a /c:"VCREDI~3.EXE /q:a /c:""msiexec /i vcredist.msi /qn"" "


이렇게 하면 조용히 화면 안뜨고 설치가 잘된다..
자세한 사항은 "여기"를 참고..



기타


However, if you have downloaded the standalone VC 8.0 redistributable packages, you will need to modify the command lines slightly.  The following command lines can be used to install the original release of the standalone VC 8.0 redistributable packages:

For x86: vcredist_x86.exe /q:a /c:"VCREDI~1.EXE /q:a /c:""msiexec /i vcredist.msi /qn"" "
For x64: vcredist_x64.exe /q:a /c:"VCREDI~2.EXE /q:a /c:""msiexec /i vcredist.msi /qn"" "
For ia64: vcredist_ia64.exe /q:a /c:"VCREDI~3.EXE /q:a /c:""msiexec /i vcredist.msi /qn"" "
The following command lines can be used to install the Visual Studio 2005 SP1 release of the standalone VC 8.0 redistributable packages:

For x86: vcredist_x86.exe /q:a /c:"VCREDI~3.EXE /q:a /c:""msiexec /i vcredist.msi /qn"" "
For x64: vcredist_x64.exe /q:a /c:"VCREDI~2.EXE /q:a /c:""msiexec /i vcredist.msi /qn"" "
For ia64: vcredist_ia64.exe /q:a /c:"VCREDI~1.EXE /q:a /c:""msiexec /i vcredist.msi /qn"" "
The following command lines can be used to install the Visual Studio 2005 SP1 ATL Security Update release of the standalone VC 8.0 redistributable packages:

For x86: vcredist_x86.exe /q:a /c:"VCREDI~3.EXE /q:a /c:""msiexec /i vcredist.msi /qn"" "
For x64: vcredist_x64.exe /q:a /c:"VCREDI~2.EXE /q:a /c:""msiexec /i vcredist.msi /qn"" "
For ia64: vcredist_ia64.exe /q:a /c:"VCREDI~1.EXE /q:a /c:""msiexec /i vcredist.msi /qn""
2014/02/12 11:32 2014/02/12 11:32
Posted
Filed under Development/etc.
마스터키를 등록하는 과정에서 80400에러가 떴다.

hasp_windows_master.dll 파일을 기본경로에서 찾지 못해서 나는 에러다.
hasp_windows_master.dll 파일을 찾아서 ({Sentinel HASP}\VendorTools\VendorSuite) 시스템 폴더(SysWow64)에 넣어줬더니 해결.


http://sentineltechsupport.safenet-inc.com/2011/06/hasp-faq-q2-2011/

Q: How to resolve Error 80400 on clicking Master Keys tab in Business Studio?

0

A:  If opening Business Studio and clicking “Master Keys” it reports the error “Unable to load Master Keys, Error 80400”, probably the hasp_windows_master.dll is missing from the folder “C:\Program Files\SafeNet\Sentinel HASP Server\Servers\Sentinel HASP Server”.

Check the system where the Business Studio Server is installed and be sure that the hasp_windows_master.dll is in the following folders:

       C:\Program Files\SafeNet\Sentinel HASP Server\Servers\Sentinel HASP Server

       C:\Program Files\SafeNet\Sentinel HASP\VendorTools\VendorSuite

       C:\Program Files\SafeNet\Sentinel HASP\VendorTools\Common\Factory

With 5.1 where Business Studio is supported over 64bit, if Master key is not visible in BS, we need to make sure that along with above mentioned directory paths, hasp_windows_master.dll is available in system path C:\WINDOWS\SysWOW64 and/or \System32

This entry was posted in FAQ, Sentinel HASP by LicensingLive!. Bookmark the permalink.
2014/01/21 08:55 2014/01/21 08:55
Posted
Filed under Development/etc.
{pf} (프로그램 파일즈)에 들어가는건 실행 못한다고 한다.


그래서,
[Run]  section 에서 실행목록 중 원하는 플러그에 shellexec 이거 넣으면 가능.
(실행되는 프로그램에 권한 상승하는 리소스가 있을경우)

runascurrentuser 이거 넣어도 된다. 더 깔끔함. (추가)


끝.
2013/08/27 10:42 2013/08/27 10:42
Posted
Filed under Development/etc.

전체 전송 시간 = 현재까지 걸린 시간 * 전체 크기 / 받은 크기
남은 시간        = 전체 전송 시간 - 현재까지 걸린 시간

끝.
2013/08/13 16:25 2013/08/13 16:25
Posted
Filed under Development/etc.
네트워크 드라이브 정보는 사용계정마다 다르다.
이거때문에 시스템 권한에서 현재 사용자 권한의 네트워크 드라이브를 사용하는데 많은 고난이 있었다.

사용중인 네트워크 드라이브를 확인하는 방법은 API, 레지스트리 확인이 있다.

HKEY_CURRENT_USER\Network


하위키의 이름으로 드라이브 레터가 존재한다.
예) HKEY_CURRENT_USER\Network\E, HKEY_CURRENT_USER\Network\F

Value 값으로 "RemotePath" 값을 보면 실제 사용하는 공유 폴더 정보를 알 수 있다.

이렇게 네트워크 드라이브를 뭐뭐 쓰는지는 알 수 있지만 시스템 권한으로는 사용하기엔 많은 제약이 따른다.
2013/07/26 10:20 2013/07/26 10:20