Downloads:
31,397
Downloads of v 3.30:
644
Last Update:
09 Mar 2017
Package Maintainer(s):
Software Author(s):
- SHIROUZU Hiroaki
Tags:
fastcopy copy delete explorer shell notsilent adminFastCopy (install)
- 1
- 2
- 3
3.30 | Updated: 09 Mar 2017
Downloads:
31,397
Downloads of v 3.30:
644
Maintainer(s):
Software Author(s):
- SHIROUZU Hiroaki
FastCopy (install) 3.30
Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by SHIROUZU Hiroaki. The inclusion of SHIROUZU Hiroaki trademark(s), if any, upon this webpage is solely to identify SHIROUZU Hiroaki goods or services and not for commercial purposes.
- 1
- 2
- 3
Some Checks Have Failed or Are Not Yet Complete
Not All Tests Have Passed
Validation Testing Passed
Verification Testing Passed
DetailsScan Testing Resulted in Flagged:
This package was submitted (and approved) prior to automated virus scanning integration into the package moderation processs.
We recommend clicking the "Details" link to make your own decision on installing this package.
Private CDN cached downloads available for licensed customers. Never experience 404 breakages again! Learn more...
This package is likely a meta/virtual (*) or an installer (*.install) or portable (*.portable) application package.
- Meta/virtual (*) - has a dependency on the *.install or the *.portable package - it is provided for discoverability and for other packages to take a dependency on.
- Portable (*.portable/*.commandline (deprecated naming convention)/*.tool (deprecated naming convention)) - usually zips or archives that require no administrative access to install.
- Install (*.install/*.app (deprecated naming convention)) - uses native installers, usually requires administrative access to install.
Learn more about chocolatey's distinction of installed versus portable apps and/or learn about this kind of package.
This package was approved by moderator AdmiringWorm on 13 Mar 2017.
This package is unlisted and hidden from package listings.
FastCopy is the Fastest Copy/Delete Software on Windows.
It supports UNICODE and over MAX_PATH (260 characters) file pathnames.
It automatically selects different methods depending on whether the source and destination directories are on the same or different drive.
- Different drive: Reading and writing are processed respectively in parallel by separate threads.
- Same drive: Reading is processed until the buffer fills. When the buffer is filled, writing is started and processed in bulk.
Reading/Writing is processed with no OS cache so other applications do not become slow.
It can achieve reading/writing performance that is close to the device limit.
Include/Exclude filter (UNIX Wildcard style) can be specified. In ver3.0 or later, relative paths can be specified.
It runs fast and does not hog resources, because MFC is not used. (Designed using Win32 API and C Runtime only)
Notes
- This package will install the FastCopy shell extension.
- Install and uninstall of this package does have a few windows flash open and close. I.E. This package is not silent, but it is no-touch.
- Upon uninstall, a .dll file remains locked by explorer and will not be deleted until a reboot.
Option
- NoSubs - The FastCopy Explorer shell extension choices will not appear in a submenu (as is the default) but rather on the main context menu.
This parameter can be requested on installation of the package like so:
choco install fastcopy.install -params '"/NoSubs"'
; Uninstall
Run, %1%, , Min, setupID
WinWait, FastCopy Setup
ControlClick, 2. Uninstall, FastCopy Setup
ControlClick, Start, FastCopy Setup
WinWait, UnInstall, Starting
ControlClick, OK, UnInstall
WinWait, msg, shell extention
ControlClick, OK, msg
; and close the windows containing what the user is supposed to manually delete
WinWait, , %ProgramFiles%\FastCopy, 0
WinClose, , %ProgramFiles%\FastCopy
WinWait, , %APPDATA%\FastCopy, 0
WinClose, , %APPDATA%\FastCopy
Process, WaitClose, setupID, 2
# fastcopy.install really can't be uninstalled without AutoHotKey as a prereq.
$ProgDir = Join-Path $env:ProgramFiles 'FastCopy'
# Win7 complains the installer didn't run correctly. This will prevent that.
Set-Variable __COMPAT_LAYER=!Vista
& AutoHotkey.exe $(Join-Path $env:ChocolateyPackageFolder 'tools\chocolateyUninstall.ahk') $(Join-Path $ProgDir 'setup.exe') | Out-Null
# Uninstall removes desktop/Start Menu icons, but it does not remove the installed program and folder.
if (Test-Path ($ProgDir)) {
# Test if Explorer locked the extension dll.
$dll = 'FastExt1.dll'
If (Get-ProcessorBits -eq '64') { $dll = 'FastEx64.dll' }
$Lock = Get-Process | foreach { $processVar = $_; $_.Modules | foreach { if ($_.FileName -like "*$dll") { $processVar.Name }}}
# Register a lock for deletion.
If ($Lock) {
Write-Host "The FastCopy file extension is locked by $Lock. It will be deleted on next reboot." -ForegroundColor Cyan
# Function from: https://gallery.technet.microsoft.com/scriptcenter/Register-FileToDelete-0cbb00bb
# with reference to "system.linq" (requiring .net 3.5+) removed as it is not needed here.
Function Register-FileToDelete {
[cmdletbinding(SupportsShouldProcess = $True )]
Param (
[parameter(ValueFromPipeline=$True, ValueFromPipelineByPropertyName=$True)]
[Alias('FullName','File','Folder')]
$Source = 'C:\users\Administrator\desktop\test.txt'
)
Begin {
Try { $null = [File] }
Catch {
Write-Verbose 'Compiling code to create type'
Add-Type @'
using System;
using System.Collections.Generic;
using System.Text;
using System.Runtime.InteropServices;
public class Posh
{
public enum MoveFileFlags
{
MOVEFILE_REPLACE_EXISTING = 0x00000001,
MOVEFILE_COPY_ALLOWED = 0x00000002,
MOVEFILE_DELAY_UNTIL_REBOOT = 0x00000004,
MOVEFILE_WRITE_THROUGH = 0x00000008,
MOVEFILE_CREATE_HARDLINK = 0x00000010,
MOVEFILE_FAIL_IF_NOT_TRACKABLE = 0x00000020
}
[DllImport("kernel32.dll", SetLastError = true, CharSet = CharSet.Unicode)]
static extern bool MoveFileEx(string lpExistingFileName, string lpNewFileName, MoveFileFlags dwFlags);
public static bool MarkFileDelete (string sourcefile)
{
bool brc = false;
brc = MoveFileEx(sourcefile, null, MoveFileFlags.MOVEFILE_DELAY_UNTIL_REBOOT);
return brc;
}
}
'@
}
}
Process {
ForEach ($item in $Source) {
Write-Verbose ('Attempting to resolve {0} to full path if not already' -f $item)
$item = (Resolve-Path -Path $item).ProviderPath
If ($PSCmdlet.ShouldProcess($item,'Mark for deletion')) {
If (-NOT [Posh]::MarkFileDelete($item)) {
Try { Throw (New-Object System.ComponentModel.Win32Exception) }
Catch {Write-Warning $_.Exception.Message}
}
}
}
}
} #end Register-FileToDelete function
Register-FileToDelete (Join-Path $ProgDir $dll)
Register-FileToDelete $ProgDir
# remove everything else
Remove-Item (Join-Path $ProgDir '*.*') -Exclude $dll -Force
} else {
Remove-Item $ProgDir -Recurse -Force
}
} else {
throw 'FastCopy install not found!'
}
Log in or click on link to see number of positives.
- fastcopy.install.3.30.nupkg (40b241c7770b) - ## / 59
- FastCopy.exe (1053d5e4bd0f) - ## / 61
- FastEx64.dll (a0f7610f228f) - ## / 61
- FastExt1.dll (fac1bd3f85d4) - ## / 61
- setup.exe (19f404f6b4d7) - ## / 61
- FastCopy.exe (b8ed4d4b1d71) - ## / 61
- setup.exe (f9766f8036ec) - ## / 62
- FastCopy330_x64.zip (b66b8987d52d) - ## / 57
- FastCopy330.zip (c67bd82f9847) - ## / 58
In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).
Chocolatey Pro provides runtime protection from possible malware.
Copyright © 2004-2017 by SHIROUZU Hiroaki
-
- autohotkey.portable (≥ 1.1)
Ground Rules:
- This discussion is only about FastCopy (install) and the FastCopy (install) package. If you have feedback for Chocolatey, please contact the Google Group.
- This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
- The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
- Tell us what you love about the package or FastCopy (install), or tell us what needs improvement.
- Share your experiences with the package, or extra configuration or gotchas that you've found.
- If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.