Linux iad1-shared-b7-18 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
Apache
: 67.205.6.31 | : 216.73.216.47
Cant Read [ /etc/named.conf ]
8.2.29
fernandoquevedo
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
share /
texlive /
texmf-dist /
scripts /
texlive /
[ HOME SHELL ]
Name
Size
Permission
Action
NEWS
15.33
KB
-rw-r--r--
fmtutil-sys.sh
929
B
-rwxr-xr-x
fmtutil-user.sh
926
B
-rwxr-xr-x
fmtutil.pl
53.83
KB
-rwxr-xr-x
mktexlsr
8.03
KB
-rwxr-xr-x
mktexlsr.pl
16.38
KB
-rw-r--r--
mktexmf
3.91
KB
-rwxr-xr-x
mktexpk
9.66
KB
-rwxr-xr-x
mktextfm
5.77
KB
-rwxr-xr-x
rungs.tlu
901
B
-rwxr-xr-x
tl-errmess.vbs
177
B
-rw-r--r--
tlmgr.pl
339.11
KB
-rwxr-xr-x
tlmgrgui.pl
89.27
KB
-rw-r--r--
uninstall-win32.pl
2.34
KB
-rw-r--r--
uninstq.vbs
408
B
-rw-r--r--
updmap-sys.sh
925
B
-rwxr-xr-x
updmap-user.sh
922
B
-rwxr-xr-x
updmap.pl
86.25
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : uninstall-win32.pl
#!/usr/bin/perl # Debian required shebang above # Original shebang below # #!/usr/bin/env perl # $Id: uninstall-win32.pl 56511 2020-10-02 13:04:56Z siepo $ # Copyright 2008, 2010, 2011, 2012, 2014 Norbert Preining # # GUI for tlmgr my $Master; BEGIN { $^W = 1; $Master = `%COMSPEC% /c kpsewhich -var-value=SELFAUTOPARENT`; chomp($Master); unshift (@INC, "$Master/tlpkg"); } use TeXLive::TLWinGoo; use TeXLive::TLPDB; use TeXLive::TLPOBJ; use TeXLive::TLConfig; use TeXLive::TLUtils; my $ans; if (@ARGV) { $ans = 0; } else { my $askfile = $0; $askfile =~ s!^(.*)([\\/])([^\\/]*)$!$1$2!; $askfile .= "uninstq.vbs"; $ans = system("wscript", $askfile); # 0 means yes } if ($ans) { exit(1); } else { doit(); } sub doit { # first we remove the whole bunch of shortcuts and menu entries # by calling all the post action codes for the installed packages my $localtlpdb = TeXLive::TLPDB->new ("root" => $Master); if (!defined($localtlpdb)) { tlwarn("Cannot load the TLPDB from $Master, are you sure there is an installation?\n"); } else { # set the mode for windows uninstall according to the setting in # tlpdb if (TeXLive::TLWinGoo::admin() && !$localtlpdb->option("w32_multi_user")) { non_admin(); } for my $pkg ($localtlpdb->list_packages) { &TeXLive::TLUtils::do_postaction("remove", $localtlpdb->get_package($pkg), $localtlpdb->option("file_assocs"), $localtlpdb->option("desktop_integration"), $localtlpdb->option("desktop_integration"), $localtlpdb->option("post_code")); } } my $menupath = &TeXLive::TLWinGoo::menu_path(); $menupath =~ s!/!\\!g; `rmdir /s /q "$menupath\\$TeXLive::TLConfig::WindowsMainMenuName" 2>nul`; # remove bindir from PATH settings TeXLive::TLUtils::w32_remove_from_path("$Master/bin/win32", $localtlpdb->option("w32_multi_user")); # unsetenv_reg("TEXBINDIR"); # unsetenv_reg("TEXMFSYSVAR"); # unsetenv_reg("TEXMFCNF"); TeXLive::TLWinGoo::unregister_uninstaller( $localtlpdb->option("w32_multi_user")); TeXLive::TLWinGoo::broadcast_env(); TeXLive::TLWinGoo::update_assocs(); } __END__ ### Local Variables: ### perl-indent-level: 2 ### tab-width: 2 ### indent-tabs-mode: nil ### End: # vim:set tabstop=2 expandtab: #
Close