mirror of
https://github.com/cmderdev/cmder.git
synced 2024-11-10 17:59:11 +08:00
62 lines
1.6 KiB
Batchfile
62 lines
1.6 KiB
Batchfile
@echo off
|
|
|
|
(echo.
|
|
echo ------------------------------------
|
|
echo Get Cmder env variables...
|
|
echo ------------------------------------
|
|
set | findstr -i -r "^aliases= architecture_bits ccall= cexec= ^clink_ ^cmder ^debug_output= fast_init= ^GIT_INSTALL_ROOT= ^git_locale= ^HOME= ^max_depth= ^nix_tools= ^path_position= ^path= ^PLINK_PROTOCOL= ^print_ ^SVN_SSH= ^time_init= ^user_aliases= ^verbose_output="
|
|
|
|
echo.
|
|
echo ------------------------------------
|
|
echo where git
|
|
echo ------------------------------------
|
|
where git
|
|
|
|
echo.
|
|
echo ------------------------------------
|
|
echo where clink
|
|
echo ------------------------------------
|
|
where clink
|
|
|
|
echo.
|
|
echo ------------------------------------
|
|
echo systeminfo
|
|
echo ------------------------------------
|
|
systeminfo
|
|
|
|
echo ------------------------------------
|
|
echo dir "%cmder_root%"
|
|
echo ------------------------------------
|
|
dir "%cmder_root%"
|
|
|
|
echo.
|
|
echo ------------------------------------
|
|
echo dir "%cmder_root%\vendor"
|
|
echo ------------------------------------
|
|
dir "%cmder_root%\vendor"
|
|
|
|
echo.
|
|
echo ------------------------------------
|
|
echo dir /s "%cmder_root%\bin"
|
|
echo ------------------------------------
|
|
dir /s "%cmder_root%\bin"
|
|
|
|
echo.
|
|
echo ------------------------------------
|
|
echo dir /s "%cmder_root%\config"
|
|
echo ------------------------------------
|
|
dir /s "%cmder_root%\config"
|
|
|
|
echo.
|
|
echo ------------------------------------
|
|
echo Make sure you sanitize this output of private data prior to posting it online for review by the CMDER Team!
|
|
echo ------------------------------------
|
|
) > "%temp%\cmder_diag_cmd.log"
|
|
|
|
type "%temp%\cmder_diag_cmd.log"
|
|
|
|
echo.
|
|
echo Above output was saved in "%temp%\cmder_diag_cmd.log"
|
|
|
|
|