explorer

IE 浏览器存在远程代码执行漏洞

最后都变了- 提交于 2019-12-02 06:47:25
周一,微软向用户警告广受欢迎的 Internet Explorer 存在一个高危的漏洞,攻击者利用此漏洞可以接管你的计算机,进而在你的电脑安装和卸载程序,查看、更改或删除数据,甚至创建具有完全用户权限的新帐户。 根据微软发布的安全公告,引发此漏洞的根本原因是 脚本 引擎(Scripting Engine)在内存中处理对象的方式。具体来说就是,Internet Explorer 中的 脚本 引擎在内存中处理对象时存在一个远程代码执行漏洞,该漏洞以这种方式来破坏内存,然后攻击者可以在当前用户的上下文中执行任意代码。  成功利用此漏洞的攻击者可以获得与当前用户相同的用户权限,如果当前用户使用管理员用户权限登录,则攻击者可以控制受影响的系统。然后攻击者会在你的电脑安装和卸载程序,查看、更改或删除数据,甚至创建具有完全用户权限的新帐户。   在基于 Web 的攻击场景中,攻击者可能拥有一个旨在通过 Internet Explorer 利用此漏洞的特制网站,然后诱使用户查看该网站(例如,通过发送钓鱼电子邮件)。   虽然微软已发布安全更新,并通过修改脚本引擎处理内存中对象的方式来解决此漏洞。但微软再次提醒用户放弃这款已被淘汰的浏览器。今年 2 月,微软的安全研究人员就已敦促用户停止使用 IE 作为默认浏览器。后来在四月份的时候,我们得知,即使仅在计算机上安装 Internet Explorer

open program once with multiple files as arguments from explorer

六眼飞鱼酱① 提交于 2019-12-02 02:12:49
问题 I have a program that works when, a file is opened with it using the right click menu in explorer. But if I select multiple files and then right click and open with my program then it opens multiple instances of my program, instead of just passing the multiple files as arguments to a single instance. The program is written in vb.net but is not a windows form, it is just a module, so I can to tick the Single instance option in the properties in Visual Studio. So how do I open multiple files

Open remote shared folder with credentials

为君一笑 提交于 2019-12-01 23:00:42
问题 I need to open a folder on a remote server with different credentials in a window (explorer.exe). I managed to do it with no credentials (my credentials), but when I do it with another username and another password than mine, it opens a prompt to enter a username and a password, and it says "access denied". In the access log on the remote desktop, it says that I tried to connect with my own username, and not the other username I entered. So, the process obviously did not work. But, I can't

清理Windows图标缓存 | 懒人屋

有些话、适合烂在心里 提交于 2019-12-01 22:35:13
原文: 清理Windows图标缓存 | 懒人屋 文章背景 这是一个抄袭的文章,原文在参考资料中 运行环境 操作系统:Windows 10 x64(1903) 清理脚本 @echo off rem 关闭Windows外壳程序explorer taskkill /f /im explorer.exe rem 清理系统图标缓存数据库 attrib -h -s -r "%userprofile%\AppData\Local\IconCache.db" del /f "%userprofile%\AppData\Local\IconCache.db" attrib /s /d -h -s -r "%userprofile%\AppData\Local\Microsoft\Windows\Explorer\*" del /f "%userprofile%\AppData\Local\Microsoft\Windows\Explorer\thumbcache_32.db" del /f "%userprofile%\AppData\Local\Microsoft\Windows\Explorer\thumbcache_96.db" del /f "%userprofile%\AppData\Local\Microsoft\Windows\Explorer\thumbcache_102.db"

powershell apply new settings to taskbar

天涯浪子 提交于 2019-12-01 21:40:45
I am playing around with powershell and am changing some taskbar settings by changing the registry key. For example i have written an autohide enable disable function. $autoHideSettingsPath = "HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\StuckRects2"; $autoHideValueName = "Settings"; Function toggleAutohideRegistrySettings($enable) { $key = Get-ItemProperty -Path $autoHideSettingsPath -Name $autoHideValueName; Write-Host "key is: " + $key if($enable) { $key.$autoHIdeValueName[8] = $key.$autoHideValueName[8] -bor 1; }else{ $key.$autoHIdeValueName[8] = $key.$autoHideValueName[8]

Open remote shared folder with credentials

爱⌒轻易说出口 提交于 2019-12-01 21:28:48
I need to open a folder on a remote server with different credentials in a window (explorer.exe). I managed to do it with no credentials (my credentials), but when I do it with another username and another password than mine, it opens a prompt to enter a username and a password, and it says "access denied". In the access log on the remote desktop, it says that I tried to connect with my own username, and not the other username I entered. So, the process obviously did not work. But, I can't figure out why. My code is as follows: Dim domain, username, passwordStr, remoteServerName As String Dim

open program once with multiple files as arguments from explorer

a 夏天 提交于 2019-12-01 20:55:53
I have a program that works when, a file is opened with it using the right click menu in explorer. But if I select multiple files and then right click and open with my program then it opens multiple instances of my program, instead of just passing the multiple files as arguments to a single instance. The program is written in vb.net but is not a windows form, it is just a module, so I can to tick the Single instance option in the properties in Visual Studio. So how do I open multiple files from explorer context menu in a single instance. No happy answers here, Windows Explorer doesn't provide

get a folder path from the explorer menu to a powershell variable

守給你的承諾、 提交于 2019-12-01 18:45:56
is it possible to open a explorer window from powershell and store the path selected in the explorer, to a variable? to open explorer window from powershell PS C:> explorer Maybe this script is what you want: Function Select-FolderDialog { param([string]$Description="Select Folder",[string]$RootFolder="Desktop") [System.Reflection.Assembly]::LoadWithPartialName("System.windows.forms") | Out-Null $objForm = New-Object System.Windows.Forms.FolderBrowserDialog $objForm.Rootfolder = $RootFolder $objForm.Description = $Description $Show = $objForm.ShowDialog() If ($Show -eq "OK") { Return $objForm

Creating a submenu in the explorer-shell-extention?

寵の児 提交于 2019-12-01 17:16:15
I created a small script that changes a filename (replacing spaces with _ , etc.). I'm controlling this script with parameters. Now I'd like to include that into my explorer-shell-extention, so I tried to add the following registry entries: HKEY_CLASSES_ROOT\*\shell\edit filname method a\command HKEY_CLASSES_ROOT\*\shell\edit filname method b\command HKEY_CLASSES_ROOT\*\shell\edit filname method c\command and so on. It's working fine but I'd like to pack all those methods together into a submenu. Kinda like the "open with" option. Is that possible? You can just edit this to expand your needs.

Creating a submenu in the explorer-shell-extention?

╄→гoц情女王★ 提交于 2019-12-01 16:31:41
问题 I created a small script that changes a filename (replacing spaces with _ , etc.). I'm controlling this script with parameters. Now I'd like to include that into my explorer-shell-extention, so I tried to add the following registry entries: HKEY_CLASSES_ROOT\*\shell\edit filname method a\command HKEY_CLASSES_ROOT\*\shell\edit filname method b\command HKEY_CLASSES_ROOT\*\shell\edit filname method c\command and so on. It's working fine but I'd like to pack all those methods together into a