Downloads:
4,903
Downloads of v 3.0.6257.15479:
397
Last Update:
12 Apr 2017
Package Maintainer(s):
Software Author(s):
- WetHat
Tags:
admin onenote tagging addin onenote2010 onenote2013 onenote2016 taxonomy categorization- Software Specific:
- Software Site
- Software Source
- Software License
- Software Docs
- Software Issues
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
OneNote Tagging Kit Add-In
This is not the latest version of OneNote Tagging Kit Add-In available.
- 1
- 2
- 3
3.0.6257.15479 | Updated: 12 Apr 2017
- Software Specific:
- Software Site
- Software Source
- Software License
- Software Docs
- Software Issues
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
4,903
Downloads of v 3.0.6257.15479:
397
Maintainer(s):
Software Author(s):
- WetHat
OneNote Tagging Kit Add-In 3.0.6257.15479
This is not the latest version of OneNote Tagging Kit Add-In available.
Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by WetHat. The inclusion of WetHat trademark(s), if any, upon this webpage is solely to identify WetHat goods or services and not for commercial purposes.
- 1
- 2
- 3
All Checks are Passing
3 Passing Tests
Deployment Method: Individual Install, Upgrade, & Uninstall
To install OneNote Tagging Kit Add-In, run the following command from the command line or from PowerShell:
To upgrade OneNote Tagging Kit Add-In, run the following command from the command line or from PowerShell:
To uninstall OneNote Tagging Kit Add-In, run the following command from the command line or from PowerShell:
Deployment Method:
This applies to both open source and commercial editions of Chocolatey.
1. Enter Your Internal Repository Url
(this should look similar to https://community.chocolatey.org/api/v2/)
2. Setup Your Environment
1. Ensure you are set for organizational deployment
Please see the organizational deployment guide
2. Get the package into your environment
Option 1: Cached Package (Unreliable, Requires Internet - Same As Community)-
Open Source or Commercial:
- Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2/. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
- You can also just download the package and push it to a repository Download
-
Open Source
-
Download the package:
Download - Follow manual internalization instructions
-
-
Package Internalizer (C4B)
-
Run: (additional options)
choco download onenote-taggingkit-addin.install --internalize --version=3.0.6257.15479 --source=https://community.chocolatey.org/api/v2/
-
For package and dependencies run:
choco push --source="'INTERNAL REPO URL'"
- Automate package internalization
-
Run: (additional options)
3. Copy Your Script
choco upgrade onenote-taggingkit-addin.install -y --source="'INTERNAL REPO URL'" --version="'3.0.6257.15479'" [other options]
See options you can pass to upgrade.
See best practices for scripting.
Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.
If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:
choco upgrade onenote-taggingkit-addin.install -y --source="'INTERNAL REPO URL'" --version="'3.0.6257.15479'"
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Install onenote-taggingkit-addin.install
win_chocolatey:
name: onenote-taggingkit-addin.install
version: '3.0.6257.15479'
source: INTERNAL REPO URL
state: present
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
chocolatey_package 'onenote-taggingkit-addin.install' do
action :install
source 'INTERNAL REPO URL'
version '3.0.6257.15479'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller onenote-taggingkit-addin.install
{
Name = "onenote-taggingkit-addin.install"
Version = "3.0.6257.15479"
Source = "INTERNAL REPO URL"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'onenote-taggingkit-addin.install':
ensure => '3.0.6257.15479',
provider => 'chocolatey',
source => 'INTERNAL REPO URL',
}
Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.
4. If applicable - Chocolatey configuration/installation
See infrastructure management matrix for Chocolatey configuration elements and examples.
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 flcdrg on 17 Apr 2017.
This add-in for OneNote 2010 and 2013 (desktop) is based on the built-in OneNote tagging system but takes tagging of notes to the next level.
! Features:
* Page Tags can be added/removed from pages on-the-fly
* Search refinement using page tags (facetted search)
* Page tags are available and fully operational for all users of shared OneNote notebooks (requires add-in to be installed on OneNote clients)
* Full compatibility with built-in OneNote tagging system, even if add-in is not installed.
* Locating notes related to the OneNote page currently being viewed
$packageName = 'onenote-taggingkit-addin.install'
$namePattern = '*OneNote Tagging Kit*'
Get-ItemProperty -Path @( 'HKLM:\Software\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\*',
'HKLM:\Software\Microsoft\Windows\CurrentVersion\Uninstall\*' ) `
-ErrorAction:SilentlyContinue `
| Where-Object {
$_.DisplayName -like $namePattern
} `
| ForEach-Object {
Uninstall-ChocolateyPackage $packageName 'MSI' "$($_.PSChildName) /qn /norestart"
}
md5: C0D0F1881EF8913DEC7D5729876B9A45 | sha1: D7599ED6CAAA912F2FA861614D4ADF104A0F5A9A | sha256: 97242E82194BB5E2A2690CBDAC9D50B8B97884151D1A016FD60FAD5F1587120C | sha512: 1B3AB435C8C200786498D7BE7574A9A6EB22223181B7DB427854EB29A6F40C432B93BC5D3917C7306125AABF8CB87428B2C3EE33542AC04B6EAC45839AC8E2EA
Log in or click on link to see number of positives.
- onenote-taggingkit-addin.install.3.0.6257.15479.nupkg (23010c8a3a0f) - ## / 58
- SetupTaggingKitWiX.3.0.6257.15479.msi (97242e82194b) - ## / 55
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.
Add to Builder | Version | Downloads | Last Updated | Status |
---|---|---|---|---|
OneNote Tagging Kit Add-In 5.1.8514 | 149 | Tuesday, April 25, 2023 | Approved | |
OneNote Tagging Kit Add-In 5.1.8437 | 99 | Monday, February 6, 2023 | Approved | |
OneNote Tagging Kit Add-In 5.1.8434 | 87 | Friday, February 3, 2023 | Approved | |
OneNote Tagging Kit Add-In 5.0.8427 | 69 | Friday, January 27, 2023 | Approved | |
OneNote Tagging Kit Add-In 5.0.8424 | 76 | Tuesday, January 24, 2023 | Approved | |
OneNote Tagging Kit Add-In 4.0.81500.15722 | 152 | Monday, April 25, 2022 | Approved | |
OneNote Tagging Kit Add-In 4.0.81360.38002 | 97 | Monday, April 11, 2022 | Approved | |
OneNote Tagging Kit Add-In 4.0.81350.23044 | 82 | Sunday, April 10, 2022 | Approved | |
OneNote Tagging Kit Add-In 4.0.30319.42000 | 84 | Saturday, April 9, 2022 | Approved | |
OneNote Tagging Kit Add-In 4.0.8132.30888 | 72 | Thursday, April 7, 2022 | Approved | |
OneNote Tagging Kit Add-In 3.8.7617.36152 | 297 | Monday, November 9, 2020 | Approved | |
OneNote Tagging Kit Add-In 3.7.7581.19466 | 188 | Saturday, October 3, 2020 | Approved | |
OneNote Tagging Kit Add-In 3.7.7571.20274 | 138 | Wednesday, September 23, 2020 | Approved | |
OneNote Tagging Kit Add-In 3.7.7551.20257 | 148 | Thursday, September 3, 2020 | Approved | |
OneNote Tagging Kit Add-In 3.6.7210.24294 | 390 | Saturday, September 28, 2019 | Approved | |
OneNote Tagging Kit Add-In 3.5.6972.33231 | 266 | Saturday, February 2, 2019 | Approved | |
OneNote Tagging Kit Add-In 3.4.6897.30653 | 262 | Thursday, November 22, 2018 | Approved | |
OneNote Tagging Kit Add-In 3.3.6631.38362 | 415 | Tuesday, February 27, 2018 | Approved | |
OneNote Tagging Kit Add-In 3.2.6401.32978 | 478 | Monday, July 24, 2017 | Approved | |
OneNote Tagging Kit Add-In 3.0.6257.15479 | 397 | Wednesday, April 12, 2017 | Approved | |
OneNote Tagging Kit Add-In 2.7.5682.13541 | 496 | Thursday, July 23, 2015 | Approved | |
OneNote Tagging Kit Add-In 2.6.5632.31373 | 403 | Friday, June 5, 2015 | Approved |
WetHat Lab 2017
! New Features
- Tag Management and Settings dialog Tag deletion (Tag Removed from all Pages)
- Tag renaming (Tag can be replace by a list of new tags. All affected OneNote
pages are re-tagged) - 'Always on top' behavior of 'Tag Pages' and 'Tag Search' dialogs can be configured
- Action menu added (Refresh, copy tags)
- Inline editing of tag names
- All changes are saved automatically
- Tag Search dialog UI Layout improved
- Action menu on list of found pages (refresh search result, select all pages,
unselect all pages, copy links to pages) - Dialog window can be minimized
- 'Tag pages' dialog Dialog Window can be minimized
- Multiselection of found pages
! Other features
- Background tagging service
! BugFixes
- Issue: How to easy rename a tag
- Issue: Can the "Always on Top" nature of the dialog be changed?
- Issue: Settings not working, cannot click anything even close button!!!
- Issue: Remove tag outline if empty
- Issue: Tag Pages Windows not showing up
- Issue: Working with dual screens
- Various other bugfixes
! Installations Instructions
- Please always close OneNote before running this installer!
-
- chocolatey (≥ 0.9.9.0)
- dotnet4.5
Ground Rules:
- This discussion is only about OneNote Tagging Kit Add-In and the OneNote Tagging Kit Add-In 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 OneNote Tagging Kit Add-In, 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.