KB-51884: Resetting all internal tags in a data folder.

Question:

How can I reset all internal tags in a certain folder?

Solution:

One way to do so is via a script that scans all objects in the given folder while testing each object’s time. If the object is an InternalTag, then its Value property must be attributed the value 0 (zero).

Sample script:

Dim Folder

Set Folder = Application.GetObject(“Data”)

For each obj in Folder
If TypeName(obj) = “InternalTag” Then
obj.Value = 0
End If
Next

Print Friendly, PDF & Email

Este artigo foi útil? Was this helpful?

Classificação média - Average rating 0 / 5. Count: 0

Leave a Reply

Your email address will not be published.Required fields are marked *